Reputation: 9
I am trying to post an xml file (utf-16 encoded) using curl to a REST service. The REST service is expecting 'multipart/form-data' content type.
Curl Script: curl -k -i -H "Content-Type=multipart/form-data" -F "[email protected];type=text/xml" -X POST -u :
However, i am getting 500 Internal Server error while running the script.
Response: <= Recv header, 23 bytes (0x17) 0000: HTTP/1.1 100 Continue <= Recv header, 36 bytes (0x24) 0000: HTTP/1.1 500 Internal Server Error
Through chrome's add on 'postman app' i am able to successfully post the xml to the REST service.
Unable to figure out the issue causing the 500 error. Kindly help me in resolving this issue.
Regards Anooja
Upvotes: 1
Views: 4507
Reputation: 58264
First some nitpicks on your command line:
Then, add --trace
or --trace-ascii
to the command line to capture the entire request, and then you capture the entire working request you do with chrome and then you compare. Where there are differences, you adjust the curl command line to be more like the browser version. Re-iterate until it works.
Upvotes: 1