Hello everyone,
I am using C# and created a proxy from a ASP.Net asmx Web Service at client side, by using Add Web Reference... feature of VSTS 2008.
And I am using the asynchronous method call model (i.e. call the AsyncXXX method, which will return immediately) and handles the complete event (I add event handler to handle the complete even when the reponse is received from server side).
I find if there is no response from server for a long time, the complete event will not be fired.
My questions are,
Is it expected feature or my bug that if no response from server after call AsyncXXX method, complete event handler will not be called?
Are there any way to assign timeout value -- so that I do not wait on the complete event handler infinitely?
thanks in advance, George