I posted about stream request here
[wcf-chunk-data-with-stream]:http://stackoverflow.com/questions/853448/wcf-chunk-data-with-stream
I solved that task but now when i close request in client part server continue to send data. is it possible to cancel stream request from WCF server to client?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

you could Abort instead of closing proxy if you want to cancel. Make sure you handle the exceptions on the server side.

I usually do somehting like :


   serviceClient.Abort();
link|improve this answer
It's really helps, thanks a lot Emmanuel! – ArsenMkrt May 25 '09 at 4:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.