WCF - AsyncPattern=true or IsOneWay=true
Posted
by inutan
on Stack Overflow
See other posts from Stack Overflow
or by inutan
Published on 2010-02-01T10:39:41Z
Indexed on
2010/06/03
7:04 UTC
Read the original article
Hit count: 483
wcf
|asynchronous
Hello there,
Few methods in my WCF service are quite time taking - Generating Reports and Sending E-mails.
According to current requirement, it is required so that Client application just submits the request and then do not wait for the whole process to complete. It will allow user to continue doing other operations in client applications instead of waiting for the whole process to finish.
I am in a doubt over which way to go:
AsyncPattern = true OR
IsOneWay=true
Please guide.
© Stack Overflow or respective owner