RequestWrapper does not use the headers of the request it wraps.
----------------------------------------------------------------
Key: HTTPCLIENT-974
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-974
Project: HttpComponents HttpClient
Issue Type: Bug
Components: HttpClient
Affects Versions: 4.0.1
Reporter: Vianney Carel
The RequestWrapper does not use the headers of the request it wraps. Therefore
the wrapper appears as having no header, while the wrapped request may have
some.
To work-around that behavior, I have to call resetHeaders() on the wrapper just
after having created it.
This method does the following:
public void resetHeaders()
{
headergroup.clear();
setHeaders(original.getAllHeaders());
}
I suggest calling setHeaders directly in the constructor. Or at list highlight
that we should call resetHeaders() in the Javadoc.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]