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

Oleg Kalnichevski commented on HTTPASYNC-71:
--------------------------------------------

Blocking protocol interceptors simply cannot be used to process entity content 
streamed asynchronously for obvious reasons. HttpAsyncClient presently does not 
support transparent content decompression.

Oleg

> ContentDecoder doesn't read from wrapped decompression stream created by 
> ResponseContentEncoding proccessor
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: HTTPASYNC-71
>                 URL: https://issues.apache.org/jira/browse/HTTPASYNC-71
>             Project: HttpComponents HttpAsyncClient
>          Issue Type: Bug
>            Reporter: clajder
>            Priority: Minor
>              Labels: decopression, httpprocessor
>
> Created http processor array like this 
>        HttpProcessor httpproc = HttpProcessorBuilder.create()
>                       .add(new RequestDefaultHeaders())
>                       .add(new RequestAcceptEncoding())
>                       .add(new RequestClientConnControl())
>                       .add(new RequestContent())
>                       .add(new ResponseContentEncoding())
>                       .add(new RequestTargetHost()).build();
>        
> later http async client constructed as follows
>         CloseableHttpAsyncClient httpclient = HttpAsyncClients.custom()
>             .setConnectionManager(connManager)
>             .setHttpProcessor(httpproc)
>             .setUserAgent(hc.getUserAgent())
>             .setDefaultRequestConfig(defaultRequestConfig)
>             .build();
> during invocation
> Future<HttpResponse> future = httpclient .execute(httpget, null);
> HttpResponse response = future.get();
> entity.getContent() is not decompressed (gzip), however 
> ResponseContentEncoding http processor was executed



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to