POST XML file using cURL command line
If that question is connected to your other Hudson questions use the command they provide. This way with XML from the command line: $ curl -X POST -d ‘<run>…</run>’ \ http://user:pass@myhost:myport/path/of/url You need to change it a little bit to read from a file: $ curl -X POST -d @myfilename http://user:pass@myhost:myport/path/of/url Read the manpage. following … Read more