You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Felix Meschberger (JIRA)" <ji...@apache.org> on 2008/02/21 08:28:43 UTC

[jira] Assigned: (SLING-263) json render servlet does not set charset of content type

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

Felix Meschberger reassigned SLING-263:
---------------------------------------

    Assignee: Felix Meschberger

> json render servlet does not set charset of content type
> --------------------------------------------------------
>
>                 Key: SLING-263
>                 URL: https://issues.apache.org/jira/browse/SLING-263
>             Project: Sling
>          Issue Type: Bug
>          Components: Launchpad
>            Reporter: Tobias Bocanegra
>            Assignee: Felix Meschberger
>
> the launchpad JsonRenderServlet uses incomplete response content type not specifying the charset.
> Index: launchpad/launchpad-servlets/src/main/java/org/apache/sling/launchpad/servlets/LaunchpadDefaultServlet.java
> ===================================================================
> --- launchpad/launchpad-servlets/src/main/java/org/apache/sling/launchpad/servlets/LaunchpadDefaultServlet.java (revision 629192)
> +++ launchpad/launchpad-servlets/src/main/java/org/apache/sling/launchpad/servlets/LaunchpadDefaultServlet.java (working copy)
> @@ -94,7 +94,7 @@
>  
>          getServlets = new HashMap<String, Servlet>();
>          getServlets.put("html", new DefaultHtmlRendererServlet("text/html"));
> -        getServlets.put("json", new JsonRendererServlet("application/json"));
> +        getServlets.put("json", new JsonRendererServlet("application/json; charset=utf-8"));
>          getServlets.put("txt", defaultGetServlet);
>          getServlets.put("res", streamServlet);
>      }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.