Specify UTF-8 content type in JsonLibHandler
--------------------------------------------
Key: WW-3536
URL: https://issues.apache.org/jira/browse/WW-3536
Project: Struts 2
Issue Type: Bug
Components: Plugin - REST
Affects Versions: 2.1.8.1
Environment: Java 5; Firefox 3.6
Reporter: Simon Legault
Priority: Trivial
Response returned by the REST plugin does not specify the character encoding.
Firefox 3.6 reads the incoming JSON incorrectly for non-ANSI characters.
Specifying the character encoding explicitly (;charset=utf-8) fixes the problem.
public class JsonLibHandler implements ContentTypeHandler {
...
public String getContentType() {
return "text/javascript;charset=utf-8";
}
...
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.