You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Svetlin Zarev (JIRA)" <ji...@apache.org> on 2015/01/27 10:59:34 UTC

[jira] [Created] (HTTPCLIENT-1605) Cannot upload files with HttpClient 4.3.6 using PUT/POST

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: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org