You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Oleg Kalnichevski (JIRA)" <ji...@apache.org> on 2014/11/07 09:40:34 UTC

[jira] [Resolved] (HTTPCLIENT-1577) Some setting may not take effect if assigned HttpClientConnectionManager instance in HttpClientBuilder

     [ https://issues.apache.org/jira/browse/HTTPCLIENT-1577?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski resolved HTTPCLIENT-1577.
-------------------------------------------
    Resolution: Not a Problem

This behavior is documented in javadocs
http://hc.apache.org/httpcomponents-client-4.3.x/httpclient/apidocs/org/apache/http/impl/client/HttpClientBuilder.html#setDefaultSocketConfig(org.apache.http.config.SocketConfig)

Oleg

> Some setting may not take effect if  assigned HttpClientConnectionManager instance in HttpClientBuilder
> -------------------------------------------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-1577
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1577
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>    Affects Versions: 4.3.3
>            Reporter: Atkins
>
> If use set *setConnectionManager* method in *HttpClientBuilder*, some method like *setDefaultSocketConfig* or *setDefaultConnectionConfig* may not take effect.
> Should throw exception, write in javadoc or remove these method because it is duplicated. User should use *connectionManagerBuilder* to create custom connectionManager and use *setConnectionManager* to set it.
> example code:
> {code}
> HttpClients.custom()
>          .setConnectionManager(...)
>          .setDefaultSocketConfig(...)
>          .setDefaultConnectionConfig(...)
>          .setSSLSocketFactory(...)
>          .setMaxConnTotal(...)
>          .setMaxConnTotal(...)
>          .build();
> {code}
> All setXXX below setConnectionManager will not take any effect.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org