Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an MFC application that uses to upload files to our web service. I am uploading the file as form data I am using HttpSendRequestEx , InternetWriteFile and HttpEndRequest to upload the file as part by part.

It is working fine in normal case. but when uploading large files, the HttpEndRequest function fails with a last error ERROR_INTERNET_TIMEOUT.

But the actually the request is not getting failed and the file gets uploaded to the status. Due to this the status in client (My MFC application) shows it is failed but user gets the file in the server.

Any one know How can I overcome this? Can I increase the timeout using InternetSetOption if Yes which option should I set INTERNET_OPTION_CONNECT_TIMEOUT or INTERNET_OPTION_RECEIVE_TIMEOUT or INTERNET_OPTION_SEND_TIMEOUT or is any method available other than these.

Thanks in Advance...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.