How to handle invalid SSL certificate with Apache client 4.5.5?

£可爱£侵袭症+ 提交于 2019-12-18 07:21:43

问题


I am trying to use Apache Client 4.5.5 to connect to one of my web server.

I am trying to use SSLContextBuilder but it seems its deprecated now, I don't want to use deprecated.

Can someone suggest what are the latest way to handle Invalid certification?

Below is my code it works fine but SSLContext, SSLContextBuilder, loadTrustmaterial are deprecated.

SSLContextBuilder sscb = new SSLContextBuilder();
sscb.loadTrustMaterial(null, new org.apache.http.conn.ssl.TrustSelfSignedStrategy());
SSLContext sslContext = sscb.build();

SSLConnectionSocketFactory sslSocketFactory =
        new SSLConnectionSocketFactory(sslContext, new org.apache.http.conn.ssl.DefaultHostnameVerifier());

CloseableHttpClient httpclient = HttpClients.custom()     
        .setDefaultCredentialsProvider(credsProvider)
        .setSSLSocketFactory(sslSocketFactory)
        .setConnectionManager(connectionMgr)
        .build();        

try {
    HttpPost httppost = new HttpPost("myURL");

回答1:


Apache HttpClient 4.5.5

HttpClient httpClient = HttpClients
            .custom()
            .setSSLContext(new SSLContextBuilder().loadTrustMaterial(null, TrustAllStrategy.INSTANCE).build())
            .setSSLHostnameVerifier(NoopHostnameVerifier.INSTANCE)
            .build();


来源:https://stackoverflow.com/questions/49368146/how-to-handle-invalid-ssl-certificate-with-apache-client-4-5-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!