Re: How to do a simple post request using HTTP request plugin

2016-03-23 Thread steliosP
Thanks Martin for the response. This is kind of odd, not to say ridiculous, since there are extremely rare cases where someone would POST something without a post body! In any case, for future readers of this question, I would say that I bypassed this problem by using shell/batch script in

Re: How to do a simple post request using HTTP request plugin

2016-03-21 Thread Martin d'Anjou
I don't think there is a way to enter post data. According to the code, the post data is simply the list of parameters (which parameters I don't remember): https://github.com/jenkinsci/http-request-plugin/blob/master/src/main/java/jenkins/plugins/http_request/util/HttpClientUtil.java#L81 You

How to do a simple post request using HTTP request plugin

2016-03-19 Thread steliosP
I am trying to do a post request using HTTP plugin. One basic question: where do you put the content you want to post?I cannot find any related field. Please have a look at