Reminder: True WCF Asynchronous Operation
Posted
by Sean Feldman
on ASP.net Weblogs
See other posts from ASP.net Weblogs
or by Sean Feldman
Published on Wed, 17 Mar 2010 01:14:00 GMT
Indexed on
2010/03/17
1:21 UTC
Read the original article
Hit count: 583
wcf
A true asynchronous service operation is not the one that returns void, but the one that is marked as IsOneWay=true. Without this, client will always wait for valid response from server, blocking execution. Possible work-around is to generate asynchronous methods and subscribe to Completed event, but then it’s a pseudo asynchronous. Real fire-and-forget is with one way operations.
© ASP.net Weblogs or respective owner