.useProtocol("TLS")
.loadTrustMaterial(keystore)
.loadKeyMaterial(keystore, "nopassword".toCharArray())
.build();
this.localServer = new LocalTestServer(serverSSLContext);
this.localServer.registerDefaultHandlers();
this.localServer.start();
final HttpHost host = new HttpHost("localhost", 443, "https");
final HttpContext context = new BasicHttpContext();