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 application that upload file(s) to our own server. The server side has provided appropriate urls to upload files. The file is sent as multipart form data.

it is working fine in our old server. But problem started when it is moved to a new server, which supports only https requests.

if the file upload request is sent and if the file is less than 32 bytes, the server returns an error, 'file not available'

but the same file gets uploaded to the first server which is not https

also if the file is >= 32 bytes, it gets uploaded to both the servers.

I am using wininet apis to send requests. (Httpsendrequestex and httpendrequest)

after the httpendrequest function i have checked for the last error, which returns 2 which means the specified file is not found.

but it the return value is same in both success and failure cases...

anyone has an idea why this issue occurrs?

is there any limitation for uploading small files towards https servers?

please help thanks in advance

share|improve this question
There is no such limitation. Do you have access to the servers? Could be a server error too. Either way, it is worth checking the server logs for why exactly was your upload request rejected. – hege Nov 28 '12 at 7:31

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.