proxy config clarification request
Wednesday, September 18, 2019 at 06:52amI've a request for clarification on the proxy configuration options.
When should withHttps be used versus withHttp and what difference does it make? It isn't clear to me that it is straight forward as I've seen sample code showing withHttp (vs withHttps) being used, yet the URL passed is 'https://sandbox...'. So in theory the traffic is encrypted regardless...
ProxyConfiguration httpProxyConfiguration = ProxyConfigurationBuilder .newProxyConfiguration() .withHttpsHost(proxyHost) .withHttpsPort(proxyPort) // .withHttpHost(proxyHost) // .withHttpPort(proxyPort) .build(); return new EslClient(apiKey, apiUrl, allowAllSSLCertificates, httpProxyConfiguration);
Reply to: proxy config clarification request
Wednesday, September 18, 2019 at 07:49amReply to: proxy config clarification request
Wednesday, September 18, 2019 at 08:01am