Java Code Examples for org.apache.http.impl.nio.client.HttpAsyncClientBuilder#setProxy()
The following examples show how to use
org.apache.http.impl.nio.client.HttpAsyncClientBuilder#setProxy() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HttpProxyClient.java From zeppelin with Apache License 2.0 | 6 votes |
private CloseableHttpAsyncClient getAsyncProxyHttpClient(URI proxyUri) { LOG.info("Creating async proxy http client"); PoolingNHttpClientConnectionManager cm = getAsyncConnectionManager(); HttpHost proxy = new HttpHost(proxyUri.getHost(), proxyUri.getPort()); HttpAsyncClientBuilder clientBuilder = HttpAsyncClients.custom(); if (cm != null) { clientBuilder = clientBuilder.setConnectionManager(cm); } if (proxy != null) { clientBuilder = clientBuilder.setProxy(proxy); } clientBuilder = setRedirects(clientBuilder); return clientBuilder.build(); }
Example 2
Source File: AsyncHttpClientGenerator.java From cetty with Apache License 2.0 | 5 votes |
@Override protected CloseableHttpAsyncClient build(Payload payload) { HttpAsyncClientBuilder asyncClientBuilder = HttpAsyncClients.custom(); if (StringUtils.isNotBlank(payload.getUserAgent())) { asyncClientBuilder.setUserAgent(payload.getUserAgent()); } else { asyncClientBuilder.setUserAgent(""); } asyncClientBuilder.setRedirectStrategy(new CustomRedirectStrategy()); asyncClientBuilder.setConnectionManagerShared(true); RequestConfig requestConfig = RequestConfig.custom() .setConnectTimeout(payload.getConnectTimeout()) .setSocketTimeout(payload.getSocketTimeout()).build(); ConnectionConfig connectionConfig = ConnectionConfig.custom() .setMalformedInputAction(CodingErrorAction.IGNORE) .setUnmappableInputAction(CodingErrorAction.IGNORE) .setCharset(Consts.UTF_8).build(); poolingNHttpClientConnectionManager.setDefaultConnectionConfig(connectionConfig); asyncClientBuilder.setConnectionManager(poolingNHttpClientConnectionManager); asyncClientBuilder.setDefaultRequestConfig(requestConfig); if (payload.getProxy() != null) { Proxy proxy = payload.getProxy(); HttpHost httpHost = new HttpHost(proxy.getHost(), proxy.getPort(), proxy.getScheme()); asyncClientBuilder.setProxy(httpHost); } reduceCookie(asyncClientBuilder,payload); return asyncClientBuilder.build(); }
Example 3
Source File: HttpFactory.java From aliyun-tablestore-java-sdk with Apache License 2.0 | 5 votes |
public static CloseableHttpAsyncClient createHttpAsyncClient( ClientConfiguration config, PoolingNHttpClientConnectionManager cm) { HttpAsyncClientBuilder httpClientBuilder = HttpAsyncClients.custom(); httpClientBuilder.setConnectionManager(cm); RequestConfig requestConfig = RequestConfig.custom() .setConnectTimeout(config.getConnectionTimeoutInMillisecond()) .setSocketTimeout(config.getSocketTimeoutInMillisecond()).build(); httpClientBuilder.setDefaultRequestConfig(requestConfig); httpClientBuilder.setUserAgent(Constants.USER_AGENT); httpClientBuilder.disableCookieManagement(); String proxyHost = config.getProxyHost(); int proxyPort = config.getProxyPort(); if (proxyHost != null) { if (proxyPort <= 0) { throw new ClientException("The proxy port is invalid. Please check your configuration."); } HttpHost proxy = new HttpHost(proxyHost, proxyPort); httpClientBuilder.setProxy(proxy); String proxyUsername = config.getProxyUsername(); String proxyPassword = config.getProxyPassword(); if (proxyUsername != null && proxyPassword != null) { String proxyDomain = config.getProxyDomain(); String proxyWorkstation = config.getProxyWorkstation(); CredentialsProvider credsProvider = new BasicCredentialsProvider(); credsProvider.setCredentials( new AuthScope(proxyHost, proxyPort), new NTCredentials( proxyUsername, proxyPassword, proxyWorkstation, proxyDomain)); httpClientBuilder.setDefaultCredentialsProvider(credsProvider); } } return httpClientBuilder.build(); }
Example 4
Source File: HttpFactory.java From mq-http-java-sdk with MIT License | 4 votes |
public static CloseableHttpAsyncClient createHttpAsyncClient( PoolingNHttpClientConnectionManager connManager, ClientConfiguration config) { HttpAsyncClientBuilder httpClientBuilder = HttpAsyncClients.custom() .setConnectionManager(connManager); // Set proxy if set. String proxyHost = config.getProxyHost(); int proxyPort = config.getProxyPort(); if (proxyHost != null && proxyPort > 0) { HttpHost proxy = new HttpHost(proxyHost, proxyPort); httpClientBuilder.setProxy(proxy); String proxyUsername = config.getProxyUsername(); String proxyPassword = config.getProxyPassword(); if (proxyUsername != null && proxyPassword != null) { String proxyDomain = config.getProxyDomain(); String proxyWorkstation = config.getProxyWorkstation(); CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); credentialsProvider.setCredentials(new AuthScope(proxy), new NTCredentials(proxyUsername, proxyPassword, proxyWorkstation, proxyDomain) ); httpClientBuilder .setDefaultCredentialsProvider(credentialsProvider); } } RequestConfig defaultRequestConfig = RequestConfig .custom() .setCookieSpec(CookieSpecs.BEST_MATCH) .setExpectContinueEnabled(true) .setStaleConnectionCheckEnabled(true) .setTargetPreferredAuthSchemes( Arrays.asList(AuthSchemes.NTLM, AuthSchemes.DIGEST)) .setProxyPreferredAuthSchemes(Arrays.asList(AuthSchemes.BASIC)) .setConnectTimeout(config.getConnectionTimeout()) .setSocketTimeout(config.getSocketTimeout()) .setExpectContinueEnabled(config.isExceptContinue()).build(); httpClientBuilder.setDefaultRequestConfig(defaultRequestConfig); httpClientBuilder .setMaxConnPerRoute(config.getMaxConnectionsPerRoute()); httpClientBuilder.setMaxConnTotal(config.getMaxConnections()); httpClientBuilder.setUserAgent(VersionInfoUtils.getDefaultUserAgent()); CloseableHttpAsyncClient httpclient = httpClientBuilder.build(); return httpclient; }
Example 5
Source File: HttpFactory.java From mq-http-java-sdk with MIT License | 4 votes |
public static CloseableHttpAsyncClient createHttpAsyncClient( PoolingNHttpClientConnectionManager connManager, ClientConfiguration config) { HttpAsyncClientBuilder httpClientBuilder = HttpAsyncClients.custom() .setConnectionManager(connManager); // Set proxy if set. String proxyHost = config.getProxyHost(); int proxyPort = config.getProxyPort(); if (proxyHost != null && proxyPort > 0) { HttpHost proxy = new HttpHost(proxyHost, proxyPort); httpClientBuilder.setProxy(proxy); String proxyUsername = config.getProxyUsername(); String proxyPassword = config.getProxyPassword(); if (proxyUsername != null && proxyPassword != null) { String proxyDomain = config.getProxyDomain(); String proxyWorkstation = config.getProxyWorkstation(); CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); credentialsProvider.setCredentials(new AuthScope(proxy), new NTCredentials(proxyUsername, proxyPassword, proxyWorkstation, proxyDomain) ); httpClientBuilder .setDefaultCredentialsProvider(credentialsProvider); } } RequestConfig defaultRequestConfig = RequestConfig .custom() .setCookieSpec(CookieSpecs.BEST_MATCH) .setExpectContinueEnabled(true) .setStaleConnectionCheckEnabled(true) .setTargetPreferredAuthSchemes( Arrays.asList(AuthSchemes.NTLM, AuthSchemes.DIGEST)) .setProxyPreferredAuthSchemes(Arrays.asList(AuthSchemes.BASIC)) .setConnectTimeout(config.getConnectionTimeout()) .setSocketTimeout(config.getSocketTimeout()) .setExpectContinueEnabled(config.isExceptContinue()).build(); httpClientBuilder.setDefaultRequestConfig(defaultRequestConfig); httpClientBuilder .setMaxConnPerRoute(config.getMaxConnectionsPerRoute()); httpClientBuilder.setMaxConnTotal(config.getMaxConnections()); httpClientBuilder.setUserAgent(VersionInfoUtils.getDefaultUserAgent()); CloseableHttpAsyncClient httpclient = httpClientBuilder.build(); return httpclient; }