HTTPClient 无法在 https 和 http 之间建立路由

Pay*_*man 5 routes httpclient

我正在通过混合使用 http 和 https 链接来测试 HttpClient 4.2。

HttpClient 似乎从第一次调用就坚持使用协议。如果第一个调用是 http,那么接下来的所有 https 调用都会失败,但 http 调用没有问题。反之亦然。

这是我使用的测试代码。

@Test
public void testNoRedirectMixed() throws ClientProtocolException, IOException {
    HttpClient httpclient = new DefaultHttpClient();
    httpclient=WebClientDevWrapper.wrapClient(httpclient);
    HttpClientParams.setRedirecting(httpclient.getParams(), false);

    {
    HttpGet httpget = new HttpGet("http://www.hotmail.com");
    HttpResponse response = httpclient.execute(httpget);
    HttpEntity entity = response.getEntity();
    assertTrue(EntityUtils.toString(entity).indexOf("com")>0);
    }

    try {
    HttpGet httpget = new HttpGet("https://www.hotmail.com");
    HttpResponse response = httpclient.execute(httpget);
    HttpEntity entity = response.getEntity();

    }catch (Exception e) {
        e.printStackTrace();
    }

    {
    HttpGet httpget = new HttpGet("http://www.baidu.com");
    HttpResponse response = httpclient.execute(httpget);
    HttpEntity entity = response.getEntity();
    assertTrue(EntityUtils.toString(entity).indexOf("com")>0);
    }
}
Run Code Online (Sandbox Code Playgroud)

第二个请求(https)会失败,但是百度请求没问题。

引起:org.apache.http.HttpException:无法建立路由:计划 = {s}-> https://www.hotmail.com;当前 = {s}-> http://www.hotmail.com at org.apache.http.impl.client.DefaultRequestDirector.establishRoute(DefaultRequestDirector.java:842)

我还必须禁用重定向,因为 hotmail 重定向请求:http : //www.hotmail.com -> https://www.hotmail.comhttps://www.hotmail.com -> https://www.live .COM。在任何一种情况下都会抛出类似的错误。

包装器如下所示。它用于接受所有证书。

public class WebClientDevWrapper {

    public static HttpClient wrapClient(HttpClient base) {
        try {
            SSLContext ctx = SSLContext.getInstance("TLS");
            X509TrustManager tm = new X509TrustManager() {

                public void checkClientTrusted(X509Certificate[] xcs,
                        String string) throws CertificateException {
                }

                public void checkServerTrusted(X509Certificate[] xcs,
                        String string) throws CertificateException {
                }

                public X509Certificate[] getAcceptedIssuers() {
                    return new X509Certificate[]{};
                }
            };
            ctx.init(null, new TrustManager[] { tm }, null);
            SSLSocketFactory ssf = new SSLSocketFactory(ctx);
                ssf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
            ClientConnectionManager ccm = base.getConnectionManager();
            SchemeRegistry sr = ccm.getSchemeRegistry();
            sr.register(new Scheme("https", ssf, 443));
            DefaultHttpClient client= new DefaultHttpClient(ccm, base.getParams());
            return client;
        } catch (Exception ex) {
            ex.printStackTrace();
            return null;
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

ok2*_*k2c 3

HttpClient 应该能够对用户绝对透明地管理连接。此问题可能是由 4.2 版本中引入的回归引起的(请参阅 HTTPCLIENT-1193)。

在 4.2.1 版本发布之前,请使用 PoolingConnectionManager 或 SingleConnectionManager 代替默认的。