Setting timeout on a vb.net webservice.
Anyone know how to do this. :-)
Printable View
Setting timeout on a vb.net webservice.
Anyone know how to do this. :-)
What do you mean by that, exactly? If you mean you want there to be a delay in returning a response, you would useI think... but maybe it's different with web services?Code:Threading.Thread.Sleep(number of milliseconds to wait)
I've tried this and it doesnt seem to work>
Code:
<httpRuntime
executionTimeout = "99999"
maxRequestLength = "10000"
/>