Sometimes I do the silly mistake of writing into outputStream instead of
writer:
response.getOutputStream.print(myCharacterData); // obviously ignores
charset
response.getWriter().print(myCharacterData);

Maybe...? :)

Cheers
  JZ

On Mon, Jun 21, 2010 at 10:28 AM, Peter <pcsor...@gmail.com> wrote:

> Thx but i allready added
> response.setContentType("text/html; charset=UTF-8");
> response.setCharacterEncoding("UTF-8");
> Local deploy is OK only deploying to app engine is wrong.
>
> On jún. 19, 17:56, djidjadji <djidja...@gmail.com> wrote:
> > You have to set the correct HTTP response header. In Python code
> >
> > self.response.headers['Content-Type'] = "text/html; charset=utf-8"
> >
> > 2010/6/18 Peter <pcsor...@gmail.com>:
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appeng...@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com<google-appengine%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to