Svetlin Zarev created HTTPCLIENT-1605:
-----------------------------------------
Summary: Cannot upload files with HttpClient 4.3.6 using PUT/POST
Key: HTTPCLIENT-1605
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1605
Project: HttpComponents HttpClient
Issue Type: Bug
Components: HttpClient
Affects Versions: 4.3.6
Reporter: Svetlin Zarev
Affected component: HttpClient 4.3.6
Class: org.apache.http.client.entity.EntityBuilder
When building a new HttpEntity using the EntityBuilder, the method
EntityBuilder.setStream() always sets the content length of the stream to 1,
which causes http PUT/POST requests to upload only 1 byte, instead of the whole
content of the stream.
Line 319:
{code}
if (this.stream != null) {
e = new InputStreamEntity(this.stream, 1,
getContentOrDefault(ContentType.DEFAULT_BINARY));
}
{code}
It should be:
{code}
if (this.stream != null) {
e = new InputStreamEntity(this.stream, -1,
getContentOrDefault(ContentType.DEFAULT_BINARY));
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]