Vit Hampl created HTTPCLIENT-1426:
-------------------------------------

             Summary: MultipartEntityBuilder creates malformed HttpEntity
                 Key: HTTPCLIENT-1426
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1426
             Project: HttpComponents HttpClient
          Issue Type: Bug
          Components: HttpMime
    Affects Versions: 4.3.1
            Reporter: Vit Hampl


Parts of multipart HttpEntity added with 
MultipartEntityBuilder.addBinaryBody(String name, File file) don't contain 
fields "filename" and "Content-Type", thus Commons FileUpload handles them as 
form fields, not files.
The problem is probably caused by empty filename of the created FileBody.

Example of such entity:
--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC
Content-Disposition: form-data; name="docType"

PZ001
--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC
Content-Disposition: form-data; name="file0"

<file content>

--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC--

expected result:

--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC
Content-Disposition: form-data; name="docType"

PZ001
--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC
Content-Disposition: form-data; name="file0"; filename="test.txt"
Content-Type: application/octet-stream

<file content>

--xo87KfYhq0_a-IlrudAqypCdOyMb7yi7mC--



--
This message was sent by Atlassian JIRA
(v6.1#6144)

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

Reply via email to