Matthew E. Dawson created HTTPCLIENT-2362:
---------------------------------------------
Summary: Regression: Versions after 5.3.1 silently ignore attempts
to perform HTTP/1.0 requests
Key: HTTPCLIENT-2362
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-2362
Project: HttpComponents HttpClient
Issue Type: Bug
Affects Versions: 5.4.2, 5.4.1, 5.4, 5.4-alpha2, 5.4-alpha1
Reporter: Matthew E. Dawson
Every attempt I've made to use the classic API to invoke an HTTP/1.0 request is
silently converted into HTTP/1.1:
{{
final var request = new HttpGet(uri);
request.setVersion(HttpVersion.HTTP_1_0);
client.execute(host, request, responseHandler);
}}
There's no error on the client side, but everything that I see on the server
side shows HTTP/1.1, whether I use the classic or async interfaces. I've
drilled down into the source and I think that it's because
DefaultHttpRequestWriter entirely ignores the request's version in favor of
that returned by its internal config object (which always points back at
HttpVersion.HTTP_1_1), which would more properly make this a core defect rather
than client, but I have no idea if the problem is confined to the core library.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]