While JIRA is behind a proxy , we need to set a proxy settings before we make a connection to httpClient , ex. if i use HttpConnection , i can set a Proxy host and port , so that http can use the proxy while making call to JIRA url.
The similar thing we like to do with JiraRestClient but it doesn’t provide a way to set a Proxy in anyways.
The sample code work successfully with org.apache library is follows — We like to set the proxy similar way to JiraRestClient API.
HttpHost proxy = new HttpHost(proxyHost, Integer.parseInt(proxyPort));
HttpClientBuilder clientBuilder = HttpClientBuilder.create();
clientBuilder.setProxy(proxy);
HttpComponentsClientHttpRequestFactory factory1 = new HttpComponentsClientHttpRequestFactory();
factory1.setHttpClient(httpClient);
I also face the same issue. HttpURLConnection works but not the Client. Wondering why ?
using all settings Host, port , user name etc
System.getProperties().put("http.proxyHost",----)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.