Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1080329
  • 博文数量: 143
  • 博客积分: 969
  • 博客等级: 准尉
  • 技术积分: 1765
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-30 12:09
文章分类

全部博文(143)

文章存档

2023年(4)

2021年(2)

2020年(4)

2019年(4)

2018年(33)

2017年(6)

2016年(13)

2014年(7)

2013年(23)

2012年(33)

2011年(14)

我的朋友

分类: LINUX

2017-03-03 08:41:28

原链接:

点击(此处)折叠或打开

  1. private HttpResponse handleCertificateExceptionAndRetry(IOException e,
  2.                                                         HttpRequestBase method,
  3.                                                         HttpClientBuilder client,
  4.                                                         @Nullable HttpContext context)
  5.         throws IOException {
  6.     if (!isCertificateException(e)) {
  7.         throw e;
  8.     }

  9.     if (isTrusted(method.getURI().getAuthority())) {
  10.         // creating a special configuration that allows connections to non-trusted HTTPS hosts
  11.         try {
  12.             SSLContextBuilder sslContextBuilder = new SSLContextBuilder();
  13.             sslContextBuilder.loadTrustMaterial(null, new TrustSelfSignedStrategy() {
  14.                 @Override
  15.                 public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
  16.                     return true;
  17.                 }
  18.             });
  19.             SSLConnectionSocketFactory sslConnectionSocketFactory = new SSLConnectionSocketFactory(
  20.                     sslContextBuilder.build(), SSLConnectionSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);

  21.             Registry<ConnectionSocketFactory> socketFactoryRegistry = RegistryBuilder.<ConnectionSocketFactory>create()
  22.                     .register("https", sslConnectionSocketFactory)
  23.                     .build();

  24.             PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager(socketFactoryRegistry);
  25.             client.setConnectionManager(connectionManager);
  26.         } catch (Exception sslException) {
  27.             throw Throwables.propagate(sslException);
  28.         }
  29.         return client.build().execute(method, context);
  30.     }
  31.     throw e;
  32. }

阅读(4453) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~