I did read the following posts:
- http://stackoverflow.com/questions/1048330/pause-resume-upload-in-c
- http://stackoverflow.com/questions/1830130/resume-uploads-using-http
But didn't got a perfect solution to my problem.
In the above posts, one of the answers says
"client and server needs to identify the file some how i suggest the use of a Guid so the server knows what file to append the extra data too."
Request you to plz visit the first link of the aobve and find that answer. This answer is all about streaming. Can someone plz provide links using which I can build such kind of code?In these posts one of the answer said
"you can send several small file pieces and rebuild them server side"
...HOW?Can't I use something like
checksum
etc to detect how much part is uploaded and how much more needs to be and append it to that file? If yes, how?