Request Time out IIS 7 .net 4.0

1
I keep and error that says: Server Error in '/' Application. Request timed out. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: Request timed out. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [HttpException (0x80004005): Request timed out.] Can anyone help me with why this is happening? I think it may be a permissions issue but I have no idea. I know that the web.config file permissions are set up correctly. This is what my web.config file reads: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAllRequests="true"> <add name="RewriterModule" type="ManagedFusion.Rewriter.RewriterModule, ManagedFusion.Rewriter" /> </modules> <handlers> <add name="RewriterProxyHandler" preCondition="integratedMode" verb="*" path="RewriterProxy.axd" type="System.Web.HttpForbiddenHandler, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> </handlers> </system.webServer> <system.web> <httpModules> <add name="RewriterModule" type="ManagedFusion.Rewriter.RewriterModule, ManagedFusion.Rewriter" /> </httpModules> <securityPolicy> <trustLevel name="Full" policyFile="internal" /> </securityPolicy> <identity impersonate="true" /> </system.web> <location path="xas"> <system.webServer> <httpErrors errorMode="Detailed" /> </system.webServer> </location> <system.webServer> <staticContent> <mimeMap fileExtension=".mxf" mimeType="text/xml" /> </staticContent> </system.webServer> </configuration>
asked
0 answers