I use C # and created a proxy from ASP.NET asmx Web Service on the client side using the add web links feature ... VSTS 2008.
And I use the model of calling asynchronous methods (i.e., the AsyncXXX method is called, which will immediately return) and processes the complete event (I add an event handler to handle the full, even when the response is received from the server).
I find that if there is no response from the server for a long time, the full event will not be fired.
My questions:
Is the expected function, or my mistake, that if a response from the server after calling the AsyncXXX method does not trigger a full event handler?
Is there a way to assign a timeout value - so that I do not wait for the event handler to end indefinitely?
thanks in advance George
source
share