You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Stefan Magnus Landrø (JIRA)" <ji...@apache.org> on 2010/12/01 23:32:11 UTC

[jira] Commented: (WW-3536) Specify UTF-8 content type in JsonLibHandler

    [ https://issues.apache.org/jira/browse/WW-3536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12965889#action_12965889 ] 

Stefan Magnus Landrø commented on WW-3536:
------------------------------------------

We've had the same issue.
As a temporary fix, you can override the json content type handler with your own implementation (as suggested by Simon Legault).


> 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.