1

当 org.restlet.Context 使用 Apache HttpClient 建立连接时,我如何指定客户端应该等待服务器响应的超时时间。这是我到目前为止所拥有的

    final Context context = new Context();
    context.getParameters().add("socketTimeout", "10000");
    context.getParameters().add("", "10000"); //?? connectionTimeout

    ClientResource clientResource = new ClientResource(context, ss.getUrl());

是否有可能的参数值及其含义的文档?

4

1 回答 1

2

事实上,HttpClient 扩展的所有支持参数都在这个页面中描述: http ://www.restlet.org/documentation/snapshot/jee/ext/org/restlet/ext/httpclient/HttpClientHelper.html

在您的情况下,该idleTimeout参数似乎应该打扰。

于 2013-01-28T15:05:51.263 回答