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

Lukasz Lenart commented on WW-3401:
-----------------------------------

Strange, in JSONResult there is

{code}

    /**
     * Retrieve the encoding <p/>
     *
     * @return The encoding associated with this template (defaults to the value
     *         of 'struts.i18n.encoding' property)
     */
    protected String getEncoding() {
        String encoding = this.defaultEncoding;

        if (encoding == null) {
            encoding = System.getProperty("file.encoding");
        }

        if (encoding == null) {
            encoding = "UTF-8";
        }

        return encoding;
    }
{code}

maybe it's something else ?

The only problem I see that isn't default to struts.i18n.encoding
                
> S2 JSON Plugin handles json content and contentType encoding differently
> ------------------------------------------------------------------------
>
>                 Key: WW-3401
>                 URL: https://issues.apache.org/jira/browse/WW-3401
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 2.1.8.1
>         Environment: Windows and Red Hat 5
>            Reporter: Nestor Boscan
>              Labels: encoding, json, s2, struts
>             Fix For: 2.1.8.1
>
>
> Hi
> I'm using Struts 2 with Struts 2 JSON Plugin. When I deploy my application on 
> a Linux box and the JVM file.encoding parameter is set to ISO-8859-1 the json 
> content is generated as UTF-8 and the content type is 
> application/json;charset=iso-8859-1. So to workaround this problem I set the 
> defaultEncoding attribute to UTF-8 to fix it on Redhat Linux. But if I run 
> this configuration on windows with the defaultEncoding attribute I get the 
> json content with what it looks to be iso-8859-1 encoding and content type 
> application/json;charset=utf-8.
> To replicate the problem on Windows you can set defaultEncoding to utf-8.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to