Robust Large File Transfer with WCF

Posted by Sharov on Stack Overflow See other posts from Stack Overflow or by Sharov
Published on 2010-05-04T19:05:31Z Indexed on 2010/05/05 4:38 UTC
Read the original article Hit count: 254

Filed under:
|
|

I want to transfer big files (1GB) over unreliable transport channels. When connection is interrupted, I don't want start file transfering from the begining. I can partially store it in a temp table and store last readed position, so when connection is reestablished I can request continue uploading of file from this position. Is there any best-practice for such kind of things. I'm currently use chunking channel.

© Stack Overflow or respective owner

Related posts about wcf

Related posts about best-practices