I am running an ASMX webservice on IIS 7. The client is a silverlight application. I am issuing several asynchronous file requests to the webservice and processing them on AsyncCompleted. Sometime after all the async requests have been issued, I get the following timeout message. How can the timeout be increased.
I tried adding the following in the web.config of the ASP.NET project that is hosting my silverlight application.
<httpRuntime executionTimeout="12000"/>
(This timeout is not happening when I do the requests synchronously, but synchronous operations are very slow.)
The HTTP request to 'http://localhost:5080/Service1.asmx' has exceeded the
allotted timeout.