I have a desktop application that needs to upload files to a webserver.
The protocol is HTTPS.
I'm thinking I should write an ashx that will handle the uploads; sending 4k chunks at a time. With a response of ok each time. Is this a good algorithm?
What is the best algorithm for uploading from a desktop application to a webserver over HTTPS?