Call EAP Web-service method from code expects IAsyncResult

124 Views Asked by At

We have Web Service proxy which has asynchronous method based on Event-based Asynchronous Pattern. But the client code we are making call to web-service is asynchronous but implemented with Asynchronous Programming Model (APM) and it expects Web methods to return IAsyncResult.

How we can do that?

1

There are 1 best solutions below

3
On

Server and client are independent in the sense that neither can tell what kind of synchronous or asynchronous programming model the other uses.

You can use any style on the client that you want. Probably, that should be the TAP pattern nowadays. The server does not need to know, nor can it find out if it wanted to.