'WCF service call async other WCF services
I've read about the task-based asynchronous pattern and it sounds great. Now, I have a WCF service that needs to call other WCF services. Those services return differnet result. How can async call those services with the new pattern and await all to complete?
Solution 1:[1]
If you want to know about the plans of the WCF team to support the async/await model, take a look at the following blog post:
Amadeo
Solution 2:[2]
See Async CTP - How can I use async/await to call a wcf service?
for examples on async clients and services.
Or use AsyncWcfLib, it supports an Actor based programming model and has examples of services calling other services inside an application or over the network.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Glorfindel |
| Solution 2 | Community |
