Add StringEntity constructor with MIME-type
-------------------------------------------
Key: HTTPCORE-204
URL: https://issues.apache.org/jira/browse/HTTPCORE-204
Project: HttpComponents HttpCore
Issue Type: Improvement
Components: HttpCore
Affects Versions: 4.0.1
Reporter: Gerald Turner
Priority: Trivial
Wishlist request to add an additional constructor to StringEntity which takes
the MIME-type portion of the Content-Type.
Without additional constructor:
StringEntity entity = new StringEntity(xml, "UTF-8");
entity.setContentType("text/xml; charset=UTF-8");
With additional constructor:
StringEntity entity = new StringEntity(xml, "text/xml", "UTF-8");
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]