

I see the loading ECP starting page with logon form about 5-10 minutes and then it shows ' (0x80004005): Request timed out.'. I try to enter ECP with my AD login and password. The best thing to do in this case is re-thinking the import process and using for example SSIS or even TSQL scripts. This problem happens from time to time and I do not find the dependence when it may happen again. (*)I know that such web pages should not exist. How can I change the request execution timeout in IIS 7? Is there any setting in IIS7 that corresponds to the IIS6 "request execution timeout"?
#Httpexception 0x80004005 request timed out windows#
The event ID from the Windows Appkication log is 3001 (the request has been aborted). I receive the "HttpException (0x80004005): Request timed out" after ~2 minutes. writing a message on the page and issuing a Response.Flush() every few seconds disabling the application pool's PingEnabled setting increasing the application pool's Ping Max Reponse Time

increasing the Connection Time-out (site's advanced settings -Behavior -> Connection Limits) increasing the httpRuntime executionTimeout value in the site's web.config Making the httpRuntime executionTimeout value bigger in web.config does not work, but this trick helped. NET tab -> Edit Configuration -> Application tab and change the request execution timeout value from there. To do this I go to the site properties -> ASP. If I run the page on IIS6, I can avoid these timeouts by increasing the request execution timeout from 110 seconds to a bigger value. I have trouble with request timeouts on a web page (.NET 2) which performs a large data import via a web service, and hence it may take several minutes to load.
