Hi,
I have an ASP.Net application that makes an AJAX request to retrieve at report. The report can run for a long time so I set the asyncpostbacktimeout
in <asp:ScriptManager />
to 600. However, when I try to run the report, if it runs for longer than 90 seconds it fails to come back. I can see in the IIS logs that the POST request succeeded with a 200 status and I can see the time taken is much less than 600.
The web page dutifully waits for the entire 600 seconds before returning with a timeout error:
Error: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
Is there any setting I should be checking in IIS? Connection timeout is 900 seconds.
Cheers, Iain