test/jdk/java/net/httpclient/EscapedOctetsInURI.java
branchhttp-client-branch
changeset 56771 73a6534bce94
parent 56507 2294c51eae30
child 56795 03ece2518428
equal deleted inserted replaced
56770:f1626bc0a010 56771:73a6534bce94
   199 
   199 
   200         http2TestServer = new Http2TestServer("localhost", false, 0);
   200         http2TestServer = new Http2TestServer("localhost", false, 0);
   201         http2TestServer.addHandler(new HttpASCIIUriStringHandler(), "/http2");
   201         http2TestServer.addHandler(new HttpASCIIUriStringHandler(), "/http2");
   202         http2URI = "http://" + http2TestServer.serverAuthority() + "/http2";
   202         http2URI = "http://" + http2TestServer.serverAuthority() + "/http2";
   203 
   203 
   204         https2TestServer = new Http2TestServer("localhost", true, 0);
   204         https2TestServer = new Http2TestServer("localhost", true, sslContext);
   205         https2TestServer.addHandler(new HttpASCIIUriStringHandler(), "/https2");
   205         https2TestServer.addHandler(new HttpASCIIUriStringHandler(), "/https2");
   206         https2URI = "https://" + https2TestServer.serverAuthority() + "/https2";
   206         https2URI = "https://" + https2TestServer.serverAuthority() + "/https2";
   207 
   207 
   208         httpTestServer.start();
   208         httpTestServer.start();
   209         httpsTestServer.start();
   209         httpsTestServer.start();