I created a client application that calls a SOAP webservice and may take up to one minute to respond with results. How do I ensure that my client application will not timeout before the webservice does? And what's the default timeout value for my web application when it invokes a webservice.
If you're using .net 2.0 or before then you can set the Timeout property of the webref-generated proxy class. I'd bet there's something similar for WCF proxies.
I've searched but did not find a concrete answer. I found out the web service I'm calling is set to timeout after 60 seconds. I don't want my web application to time out before then. Any help is appreciated.
If you're using .net 2.0 or before then you can set the Timeout property of the webref-generated proxy class. I'd bet there's something similar for WCF proxies.