- I am calling a WebService method via a Command Line Exe.
- This method call is Async Call and I am using WaitOne after the Call.
- I am doing ManualRest.Set() in completed method.
The above setup works fine 99% of the cases where the async method returns withing 10-20 mintues,
Problem occurs when the Async Call takes more time like 2-3 hours then the code after WaitOne() is not being executed.
I am writing logs before and after waitone() and in Completed event also but the control does not seems back after a 3 hours of async call.
Any help / pointer on above ...
Thanks.