Well, I am thinking in a WCF service per call, and use async methods for scalability reasons. Then I am thinking in the following, what is better, to have the async methods in the service or in the client?
All the examples that I see is in the contract of the service implement the begin/end methods and then the client consume this methods.
However, I am thinking in other possibility. is it possible to have normal methods in the service and in the client implement the begin/end methods or use CTP and consume the methods of the service asynchroly? If I use this form, would I loose the scalability benefits?
Thanks. Daimroc.