5

我正在通过混合使用 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);
    }
}

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

引起:org.apache.http.HttpException:无法建立路由:planned = {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;
        }
    }
}
4

2 回答 2

3

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

在 4.2.1 版本发布之前,使用 PoolingConnectionManager 或 SingleConnectionManager 而不是默认的。

于 2012-05-25T15:32:25.950 回答
0

您正在尝试使用一个连接与多个不同的站点进行通信。AFAIR 您必须为每个唯一站点创建新连接(== 新客户端)。

于 2012-05-24T14:07:44.217 回答