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 a win32 application which uploads Images to the server continuously. But when i uses this, it uploads in such a way that 2 files uploads properly and the 3rd one fails(with an exception with last error 12031 or 12152). and the next 2 uploads will be success and the next request fails.

in most cases the error code is 12031. Which is connection Reset. The file is send as a post request,

I am using the wininet apis to send the files. HttpSendRequestEx and HttpEndRequest

I am closing all connection handles and request handles after sending each request, as I have read that the Windows limits no.of open requests to a server.

But Some times the requests are successfully sent without any issues. This behavior is not happened always. Is there any particular reason for this?

Also I cant believe its due to the limitation of maximum connections per server. in that case it should have failed always.... or is there any possibility to happen like this?

At the same time I have been using the same code in another application which doesnot have caused any such problem yet.

any idea about this?? please help.... Thanks in advance

share|improve this question
It could be a problem at the server end (check logs!) or it could be a general network problem. – Joachim Pileborg Jul 19 '12 at 6:02

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.