HttpClientConnection con = new HttpClientConnection("localhost", server.getLocalPort());
FutureResponseHandler hdl = new FutureResponseHandler();
BodyDataSink sink = con.send(new HttpRequestHeader("POST", "/", "text/plain; charset=iso-8859-1"), hdl);
sink.flush();
BlockingBodyDataSource source = hdl.getResponse().getBlockingBody();
sink.write("test\r\n");