On Sun, 2015-03-22 at 17:13 -0400, Bill Gottlieb wrote: > I use HttpClient 4.4 to connect to an IIS https REST web service. When I > test from my PC everything works fine, returning data from the server > without issue. I load the same code onto my IBM iSeries and receive the > following error "HTTP Error 400 - The request hostname is invalid.". Both > are using JDK 1.6. The PC uses Oracle's and the iSeries uses IBM's JDK. > > The IIS folks have tried to change things on their end, to no avail. I've > tried with both of the following from my end, thinking the second would > work no matter what: > > CloseableHttpClient browser = HttpClientBuilder.create().build(); > CloseableHttpClient browser = > HttpClients.custom().setSSLHostnameVerifier(new > NoopHostnameVerifier()).build(); > > Does anybody have any ideas that could help me solve this problem? Thanks!
Please produce and compare wire / context logs of both sessions http://hc.apache.org/httpcomponents-client-4.4.x/logging.html Oleg --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
