Assert.assertEquals(204, status);
method.releaseConnection();
}
{
GetMethod method = new GetMethod("http://localhost:8080/ejb-integration-war/locating/queryParam");
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();