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 <[email protected]> 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 <[email protected]> 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 <[email protected]>: > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine%[email protected]> > . > 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
