NonThreadedServerHandler hdl = new NonThreadedServerHandler();
HttpServer server = new HttpServer(hdl);
server.setConnectionTimeoutMillis(1 * 1000);
server.addConnectionHandler(hdl);
server.start();
IBlockingConnection con = new BlockingConnection("localhost", server.getLocalPort());
QAUtil.sleep(1000);