Is there any way to POST both binary data and form data using cURL? For example:

"C:\Program Files\Curl\curl" -k --data-binary @"C:\datafile.xml" -d "key=somethinghere" -H "Content-Type:application/html" -X POST http://localhost:57870/PostTheData -v

The binary data works just fine but I need to POST a parameter as well as the binary data.

Any ideas?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Always speaking too soon. I've fixed this now:

"C:\Program Files\Curl\curl" -k -d "param=something" --data-binary @"data.xml" http://localhost:57870/UploadData -v

Hey presto.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.