I am facing this problem.
I am calling a WebService method via a Command Line Exe.
This method call is Async Call and I am using
WaitOneafter 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. The problem occurs when the Async Call takes more time like 2-3 hours then the code after WaitOne() is not being executed.
I saw a similar post in the same site and tried out the answer suggested, but it did not help.
Here is the entire scenario:
Have a web Application that starts a console application , which in turn makes a async call to a web service hosted on a remote machine and waits for the signal.
Here is the sample code in bits and pieces:
StartAction.cs
{
//...
Process.Start(DoAction.exe)
}
DoAction.cs
{
private bool load(LoadInformation loadinfo)
{
RunRemotely();
manualResetEvent.WaitOne();
//...
}
public void RunRemotely()
{
RemoteLoaderExec.RemoteLoad remoteLoad = new RemoteLoaderExec.RemoteLoad ();
remoteLoad .ExecuteRemotelyCompleted += new ExecuteRemotelyCompletedEventHandler(ExecuteRemotelyCompleted);
ahrqSasPsiLoad.ExecuteRemotelyAsync();
}
private void ExecuteRemotelyCompleted(object sender, ExecuteRemotelyCompletedEventArgs e)
{
try
{
bool value = e.Result;
}
catch (Exception ex)
{
new Exception(Environment.NewLine + ex.Message );
}
finally
{
manualResetEvent.Set();
}
}
}
The remote loader execution is a simple thread.Sleep(). What happens here is that, when the remote web service returns quickly, may be within 10 minutes to 1 hour time span, everything works fine. But if the remote web service sleeps for about 2 hours or greater, the remote loader call completes successfully as I see logs coming through before and after sleep, but the remote web service does not return to the completed event.
Any help on this will be really appreciated.