Re: AW: Problem with characters

2005-09-07 Thread Morris Jones
Martin and Luke, are you using different databases on the two environments? You might want to be sure you have MySQL configured to use unicode, and add the "useUnicode" and "characterEncoding" options to your database connect URL. You may also find that you need to set the character encoding

Re: AW: Problem with characters

2005-09-07 Thread lk
Martin Kindler wrote: ... at last I installed a little filter on my container (Tomcat 5.0.x) which explicitly sets the encoding for each request and response to UTF-8. This proved to be the real solution. Hi Martin, Could you post the way you used? Thanks LuKe -- Email.it, the professional

Re: AW: Problem with characters

2005-09-07 Thread Ivan Rodriguez
I think you are right. I use too a filter from springframework to force UTF-8 encoding: encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true And th