Home | History | Annotate | Download | only in integration

Lines Matching defs:httppost

50 import org.apache.http.client.methods.HttpPost;
116 HttpPost httppost = new HttpPost("http://localhost:8192/");
120 httppost.setEntity(new UrlEncodedFormEntity(postParameters));
123 String responseBody = this.httpclient.execute(httppost, responseHandler);
132 HttpPost httppost = new HttpPost("http://localhost:8192/");
136 httppost.setEntity(reqEntity);
139 String responseBody = this.httpclient.execute(httppost, responseHandler);
148 HttpPost httppost = new HttpPost("http://localhost:8192/");
150 String responseBody = this.httpclient.execute(httppost, responseHandler);
170 HttpPost httppost = new HttpPost("http://localhost:8192/chin");
180 httppost.setEntity(reqEntity);
181 HttpResponse response = this.httpclient.execute(httppost);