test/jdk/java/net/httpclient/ConcurrentResponses.java
branchhttp-client-branch
changeset 56771 73a6534bce94
parent 56451 9585061fdb04
child 56777 62a6a0f24efa
equal deleted inserted replaced
56770:f1626bc0a010 56771:73a6534bce94
   278         http2TestServer.addHandler(new Http2FixedHandler(), "/http2/fixed");
   278         http2TestServer.addHandler(new Http2FixedHandler(), "/http2/fixed");
   279         http2FixedURI = "http://" + http2TestServer.serverAuthority()+ "/http2/fixed";
   279         http2FixedURI = "http://" + http2TestServer.serverAuthority()+ "/http2/fixed";
   280         http2TestServer.addHandler(new Http2VariableHandler(), "/http2/variable");
   280         http2TestServer.addHandler(new Http2VariableHandler(), "/http2/variable");
   281         http2VariableURI = "http://" + http2TestServer.serverAuthority() + "/http2/variable";
   281         http2VariableURI = "http://" + http2TestServer.serverAuthority() + "/http2/variable";
   282 
   282 
   283         https2TestServer = new Http2TestServer("localhost", true, 0);
   283         https2TestServer = new Http2TestServer("localhost", true, sslContext);
   284         https2TestServer.addHandler(new Http2FixedHandler(), "/https2/fixed");
   284         https2TestServer.addHandler(new Http2FixedHandler(), "/https2/fixed");
   285         https2FixedURI = "https://" + https2TestServer.serverAuthority() + "/https2/fixed";
   285         https2FixedURI = "https://" + https2TestServer.serverAuthority() + "/https2/fixed";
   286         https2TestServer.addHandler(new Http2VariableHandler(), "/https2/variable");
   286         https2TestServer.addHandler(new Http2VariableHandler(), "/https2/variable");
   287         https2VariableURI = "https://" + https2TestServer.serverAuthority() + "/https2/variable";
   287         https2VariableURI = "https://" + https2TestServer.serverAuthority() + "/https2/variable";
   288 
   288