My web configuration is as follows:
<system.web> <compilation debug="false"/> <httpRuntime executionTimeout="90"/> </system.web>
This works great for most webservice functions, but one function has a request that runs for a very long time (5 minutes) and will be stopped before it finishes. Is it possible to set a runtime of 5 minutes for this web service?
For instance:
MyWebServices.asmx?op=WS_LongMethod --> Timeout of 5 minutes
I was thinking of starting an async (fire and forget) database query, but this is not possible using sybase / oracle via ODBC.
source share