Hello, You may find something usefull here: http://stackoverflow.com/questions/3278900/httpservletrequest-setcharacterencoding-seems-to-do-nothing. I suggest you to try setting the encoding of the request prior to processing any information, it may works for the query string too.
If that wont works, It seem's that this is configured in the servlet container. Maybe you can try reading the whole QueryString (req.getQueryString()) and see if you can convert it using one of those methods: http://stackoverflow.com/questions/655891/converting-utf-8-to-iso-8859-1-in-java-how-to-keep-it-as-single-byte (just change the from/to encodings to match your case ISO -> UTF8). Please post here if it works. Hope this helps, -Ronoaldo -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/4Rq2qMopHrEJ. 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-java?hl=en.
