WCF streaming and resume options

I have a script that I need to implement. Namely, my server needs to implement WCF, which will accept large files (500 MB - 1 GB) and support renewal if the connection drops for any reason. I was thinking about using WCF streaming for this, but I was wondering if renewal is somehow supported out of the box or if I need to implement special handling for this. What is the best course of action in my case? Links to examples will be appreciated.

+5
source share
1 answer

Loading and loading methods should take a parameter that controls the loading / unloading position.

I am not sure if this is implemented / supported out of the box. For this approach, the WCF service must have a compatible client.

Check this out for full code.

http://www.abhisheksur.com/2010/09/progress-streamed-file-download-and.html

Other links you might find helpful:
Channel feed
Introduction to reliable messaging with the Windows Communication Foundation

+5
source

All Articles