How can I send/post an xml file to a local server http://localhost:8080 using curl from the command line? what command should I give?
|
|
|
If that question is connected to your other Hudson questions use the command they provide.
You need to change it a little bit to read from a file:
Read the manpage. following an abstract for -d Parameter.
|
|||||||||||
|
|
From the manpage, I believe these are the droids you are looking for:
So in your case, this would be something like |
|||||
|
|
With Jenkins 1.494, I was able to send a file to a job parameter on Ubuntu Linux 12.10 using
On the Jenkins server, I configured a job that accepts a single parameter: a file upload parameter named The first line of that curl call constructs a web form with a parameter named The second line defines a JSON request that matches the form parameters on line one: a file parameter named The third line activates the form's Build button. The forth line is the job URL with the "/build" suffix. If this call is successful, curl returns |
|||
|
|
