@Test
public void smallHttpPostBodyTest() throws ClientProtocolException, IOException, InterruptedException {
final String body = "Roger Schildmeijer";
final CountDownLatch latch = new CountDownLatch(1);
AsyncHttpClient asyncHttpClient = new AsyncHttpClient();
asyncHttpClient.preparePost("http://localhost:" + PORT + "/echo").setBody(body).
execute(new AsyncCompletionHandler<Response>(){
@Override
public Response onCompleted(Response response) throws Exception{
assertNotNull(response);