apachecommons httpclient 4.3.5通过http代理



大约两天以来,我一直在与一个问题作斗争,似乎没有找到解决方案。

为了提高对我们产品中系统代理设置的支持,我编写了一个测试应用程序,对一个小型http代理服务器进行一些测试,我在docker映像中运行。

一方面,我用普通的URL.openStream()进行连接……效果很好。它可以识别我的开发人员框设置,我指向docker运行的squid或tinyproxy,它可以从网上下载文件。

我对httpclient 3.X和4.X进行了相同的测试。当连接到两个代理时,两者都会因超时错误而失败。由于两者都有相同的行为,我只选择httpclient 4.x配置来显示:

public void testDownloadWithHTTPClient4() throws ClientProtocolException, IOException {
    System.out.println("DOWNLOADTEST httpclient 4.x");
    RequestConfig config = RequestConfig.custom().setSocketTimeout(TIMEOUT * 1000)
            .setConnectTimeout(TIMEOUT * 1000).setConnectionRequestTimeout(TIMEOUT * 1000).build();
    CloseableHttpClient httpclient = HttpClientBuilder.create()
            .setRoutePlanner(new SystemDefaultRoutePlanner(ProxySelector.getDefault()))
            .setDefaultRequestConfig(config).build();
    try {
        HttpGet httpget = new HttpGet(DOWNLOADURL);
        System.out.println("Executing request " + httpget.getRequestLine());
        ResponseHandler<Boolean> resStreamHandler = new ResponseHandler<Boolean>() {
            @Override
            public Boolean handleResponse(HttpResponse response) throws ClientProtocolException, IOException {
                int status = response.getStatusLine().getStatusCode();
                if (status >= 200 && status < 300) {
                    HttpEntity entity = response.getEntity();
                    String currentDirectory = new java.io.File(".").getCanonicalPath();
                    File destinationFile = new File(currentDirectory, myfile.war");
                    FileUtils.copyInputStreamToFile(entity.getContent(), destinationFile);
                    return true;
                } else {
                    throw new ClientProtocolException("Unexpected response status: " + status);
                }
            }
        };
        httpclient.execute(httpget, resStreamHandler);
    } finally {
        httpclient.close();
    }
}

我也会在之前打电话

public void prepareProxysettings() {
    // try to get system preferences for proxy-settings
    Properties props = System.getProperties();
    props.setProperty("java.net.useSystemProxies", "true");
}

结果是,客户端似乎认识到要使用代理,但随后失败,出现以下异常:

org.apache.http.conn.ConnectTimeoutException: Connect to 172.16.7.48:6666 [/172.16.7.48] failed: Connect timed out
at org.apache.http.impl.conn.HttpClientConnectionOperator.connect(HttpClientConnectionOperator.java:132)
at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:318)
at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:371)
at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:219)
[...]
Caused by: java.net.SocketTimeoutException: Connect timed out
at java.net.SocksSocketImpl.readSocksReply(SocksSocketImpl.java:125)

现在我被卡住了,不知道该怎么办。很明显,代理设置并没有错,因为我的普通URL下载是有效的。httpclient还认识到需要一个代理。但是,为什么它发送一个请求,而两个不同的http代理都不理解这个请求呢?

非常感谢您的帮助!

我终于发现了我的设置出了什么问题。愚蠢的我,配置我的开发者桌面(win7)使用我的testproxy。但我保留了默认行为,就像对所有可能类型的连接使用此代理一样。如果我这样做,我会得到描述的具有httpclient的timouet。

一旦我为http连接配置了代理,只有所有下载方式都能很好地工作,并且tinyproxy的日志证明,我的连接是通过代理路由的。

相关内容

  • 没有找到相关文章

最新更新