Hi, 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?
views:
420answers:
2
+1
A:
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();
Emmanuel
2009-05-20 19:36:07
It's really helps, thanks a lot Emmanuel!
ArsenMkrt
2009-05-25 04:42:40
A:
This doesn't cancel the service though. Anyone knows how to cancel server too?
iBe
2010-06-06 03:46:33