Header adding in org.apache.http.client.protocol.RequestAcceptEncoding should 
be conditional
--------------------------------------------------------------------------------------------

                 Key: HTTPCLIENT-1162
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1162
             Project: HttpComponents HttpClient
          Issue Type: Improvement
            Reporter: Ivan Bondarenko


org.apache.http.client.protocol.RequestAcceptEncoding adds a header in any 
case. Any chance to do it conditional (like in RequestClientConnControl)? The 
code would be something like
if (!request.containsHeader("Accept-Encoding")) {
    request.addHeader("Accept-Encoding", "gzip,deflate");
}

In our app this header may be added before request intercepting, so would be 
great if this fact is checked.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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

Reply via email to