Raise the time-out for a single webservice
- by Carra
My web configuration looks as follows:
<system.web>
<compilation debug="false"/>
<httpRuntime executionTimeout="90"/>
</system.web>
This is fine for most webservices but one webservice has a query that is running a very long (5 minutes) time and will be stopped before it has finished. Is it possible to set the runtime to 5 minutes for this webservice alone?
I've thought about running the database query async (fire and forget) but it doesn't seem possible with sybase/oracle through ODBC.