I have a WCF webservice (not under my control) that implements functionality I need to access via IsOneWay=true + a callback interface, one of the methods of which notifies of processing completion. It has been written this way as it was initially designed for access from a GUI.

However I need to access this same method from a console application for use in a batch. Currently my crude method of achieving this is to set a flag to false and after calling the WCF method I implement a while loop with a brief Thread.Sleep() call in it. This obviously works but seems like a really poor way of achieving the end result.

I'd like to know what the proper way of doing this is. Note: the service is out of my control and the reference has just been added through the IDE although I can easily knockup a code implementation etc.

link|improve this question
feedback

1 Answer

Use a ManualResetEvent for waiting for completion. Call the one-way async method on the service and then wait on the manualresetevent object. In your callback call the Set() method which will let your main thread continue execution after WaitOne() call like so:

var waitHandle = new ManualResetEvent();

yourwcfObject.CallTheOneWayMethod();
waitHandle.WaitOne();


void CallbackMethodRaisedByWCFService()
{
    waitHandle.Set();
}
link|improve this answer
1  
@anonymouse: And look at the overloads of ManualResetEvent.WaitOne. You can even set a timeout to prevent your application to wait forever in case of errors. – Stephan Oct 11 '11 at 6:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.