Trevor Gulick created HTTPCLIENT-1467:
-----------------------------------------

             Summary: Why is MultipartEntityBuilder::addPart(FormBodyPart) 
private?
                 Key: HTTPCLIENT-1467
                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1467
             Project: HttpComponents HttpClient
          Issue Type: Bug
          Components: HttpMime
    Affects Versions: 4.3 Final
            Reporter: Trevor Gulick
            Priority: Minor


I am trying to port a 4.2 Java application to use the new 4.3 MIME library. My 
old code added a custom field to a FormBodyPart before adding it to a 
MultiPartEntity via the below code. I did not see an equivalent way to add a 
custom field with the MultipartEntityBuilder because the 
MultipartEntityBuilder::addPart(FormBodyPart) method is private. How are you 
supposed to add a custom header field in 4.3?

MultipartEntity entity = new MultipartEntity(HttpMultipartMode.STRICT, "foo", 
encoding);
StringBody sbody = new StringBody(jsonObj.toString(), "application/json", 
encoding);
FormBodyPart stringBodyPart = new FormBodyPart("root-fields", sbody);
stringBodyPart.addField("Content-ID", "<startpart>");
entity.addPart(stringBodyPart);




--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

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

Reply via email to