@BeforeClass
public static void setUp() throws Exception {
IHttpRequestHandler hdl = new RequestHandler();
proxyServer = new HttpServer(0, hdl);
proxyServer.start();
proxySslServer = new HttpServer(0, hdl, SSLTestContextFactory.getSSLContext(), true);
proxySslServer.start();
IHttpRequestHandler busiHdl = new BusinessRequestHandler();
server = new HttpServer(0, busiHdl);
server.start();
sslServer = new HttpServer(0, busiHdl, SSLTestContextFactory.getSSLContext(), true);
sslServer.start();