Page 1 of 1

Request Timed Out

Posted: Tue Nov 30, 2010 3:49 am
by sleeve
Hey everybody,

A few weeks ago, we upgraded from 7.0.4 to 7.0.5. After that, we started seeing a lot of Request Timed Out errors in the log that weren't there before. We are running Windows Server 2008 and IIS7. My client claims that no changes have been made to their web server other than our AC upgrade. I've searched the AC forums and haven't seen anybody else complaining of this problem. A general search of the net turns up others with asp.net applications which are experiencing similar issues related to AJAX post requests and IIS7. The timeouts for our site often occur on pages with the AJAX update panel. Any thoughts or suggestions?

Thanks!
Sleeve

Re: Request Timed Out

Posted: Tue Nov 30, 2010 9:23 am
by s_ismail
Give a try by increasing executionTimeout in you web.config file
Locate this code in you web.config file

Code: Select all

 <httpRuntime maxRequestLength="4096"/> 
and replace with this

Code: Select all

<httpRuntime maxRequestLength="4096" executionTimeout="300"/>

Re: Request Timed Out

Posted: Tue Nov 30, 2010 3:54 pm
by sleeve
Thanks s_ismail. It's been 6 hours and so far, our log is clean. Any idea why the execution time out would need to be increased for 7.0.5?