[ 
https://issues.apache.org/jira/browse/CXF-6964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15374751#comment-15374751
 ] 

Sergey Beryozkin commented on CXF-6964:
---------------------------------------

Yes, this is what I've asked for - please create an improvement request for CXF 
Asynchronous HTTP Transport - which is CXF HTTPClient 'connector' - it is 
usually used for supporting the async calls but can be used for sync calls too.

In this JIRA you are asking supporting it at JAX-RS 2 Client API level - but 
this API does not deal with configuring lower-level connectors. Can you use  
JAX-RS 2 Client API *only* with Jersey to set up its HTTPClient connector ? I 
honestly doubt it.

So start with creating another issue for the async transport first and then we 
can see what can be done, if anything, in this issue

 

> JAX-RS 2 client api - needs support httpclient parameters in configuration
> --------------------------------------------------------------------------
>
>                 Key: CXF-6964
>                 URL: https://issues.apache.org/jira/browse/CXF-6964
>             Project: CXF
>          Issue Type: Improvement
>          Components: Configuration
>    Affects Versions: 3.1.6
>         Environment: Linux / Mac OS/X 10.10.5
>            Reporter: Chester Kim
>              Labels: configuration, httpclient, httpcomponent, timeout
>
> To configure a jax-rs client low level parameters of httpclient, I'm 
> currently doing like following ways
> {code}
>         ClientBuilder clientBuilder = ClientBuilder.newBuilder()
>             .property(CoreConnectionPNames.CONNECTION_TIMEOUT, 
> connectionTimeout)
>             .property(CoreConnectionPNames.SO_TIMEOUT, socketTimeout)
>             .property(ClientPNames.CONN_MANAGER_TIMEOUT, requestTimeout)
>             .property("http.connection-manager.max-per-host", 
> ImmutableMap.of(HostConfiguration.ANY_HOST_CONFIGURATION, maxConnHost))
>             .property("http.connection-manager.max-total", maxConnTotal)
>             .property(CoreConnectionPNames.STALE_CONNECTION_CHECK, true)
>             .register(JACKSON_PROVIDER);
> {code}
> and I noticed all these ways of configurations are deprecated way in 
> httpcomponent 4.x.
> They recommended to use org.apache.http.client.config and 
> org.apache.http.config (like RequestConfig) but I couldn't find any possible 
> (or straightforward) direction in CXF.
> There must be new way of support this configuration over deprecated way.



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

Reply via email to