You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Oleg Kalnichevski (JIRA)" <ji...@apache.org> on 2014/07/03 14:47:24 UTC

[jira] [Resolved] (HTTPCLIENT-1506) Including "; charset=..." in the content type header prevents form fields from getting transmitted?

     [ https://issues.apache.org/jira/browse/HTTPCLIENT-1506?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Kalnichevski resolved HTTPCLIENT-1506.
-------------------------------------------

    Resolution: Invalid

{code:java}
Request req = Request.Post(getAidaServiceUrl());
req.bodyForm(Form.form().add("text", text).build(), Consts.UTF_8);
{code}

http://hc.apache.org/httpcomponents-client-4.3.x/fluent-hc/apidocs/org/apache/http/client/fluent/Request.html#bodyForm%28java.lang.Iterable,%20java.nio.charset.Charset%29

Oleg

> Including "; charset=..." in the content type header prevents form fields from getting transmitted?
> ---------------------------------------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-1506
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1506
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>          Components: Fluent HC, HttpClient
>    Affects Versions: 4.3.2
>            Reporter: John Smitany
>
> Running the following code works
> Request req = Request.Post(getAidaServiceUrl().toString());
> req.addHeader("Content-Type","application/x-www-form-urlencoded");
> req.bodyForm(Form.form().add("text", text).build()); 
> but the text will be transferred in iso-8859-1. However changing the second line to 
> eq.addHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
> completely prevents the text to get transferred to the server. 
> There should be a way to easily send UTF-8 somehow.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org