I'm consuming a third-party resource (a .dll) in a web service, and my problem is, that invoking this resource (calling a method) is done asynchronous - I need to subscribe to an event, to get the answer for my request. How do I do that in a c# web service?
|
2
|
|||
|
|
|
If the 3rd party component does not support the standard asynchronous programming model (i.e it does not use IAsyncResult), you can still achieve synchronization using AutoResetEvent or ManualResetEvent. To do this, declare a field of type AutoResetEvent in your web service class:
Then wait for the event to be signaled after calling the 3rd party component
And in the callback event handler signal the event to let the waiting thread continue execution:
|
||
|
|
|
|
Thanks for all your responses - all good input. /Michael |
||
|
|
|
|
Assuming your 3rd party component is using the asynchronous programming model pattern used throughout the .NET Framework you could do something like this
Since you need your web service operation to block you should use the IAsyncResult.AsyncWaitHandle instead of the callback to block until the operation is complete. |
||
|
|
|
Thx for your reply, Sunny However, I don't want to make my web service asynchronous. |
||
|
|
|
|
From MSDN docs:
|
||
|
|
