NameValuePair[] params = {new NameValuePair("param", "hello world")};
method.setQueryString(params);
int status = client.executeMethod(method);
Assert.assertEquals(HttpResponseCodes.SC_OK, status);
Assert.assertEquals("hello world", method.getResponseBodyAsString());
method.releaseConnection();
}
{
GetMethod method = new GetMethod("http://localhost:8080/spring-integration-test/locating/uriParam/1234");
int status = client.executeMethod(method);
Assert.assertEquals(HttpResponseCodes.SC_OK, status);