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