[tomcat] : request.setCharacterEncoding (UTF-8) doesn't work ?

2006-03-07 Thread sol myr
Hi, I'm having a problem with HttpServletRequest.setCharacterEncoding(UTF-8). Basically, tomcat seems to ignore it completely, and assume latin1 encoding. Here's the details: - I have an html form where user should type data in *Chinese*. - The browser (IE6) knows that

Re: [tomcat] : request.setCharacterEncoding (UTF-8) doesn't work ?

2006-03-07 Thread David Delbecq
sol myr a écrit : Hi, I'm having a problem with HttpServletRequest.setCharacterEncoding(UTF-8). Basically, tomcat seems to ignore it completely, and assume latin1 encoding. request.setCharacterEncoding(UTF-8) must be called prior to any request.getParameter() call. If your code

RE: [tomcat] : request.setCharacterEncoding (UTF-8) doesn't work ?

2006-03-07 Thread Larry Isaacs
:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 5:11 AM To: users@tomcat.apache.org Subject: [tomcat] : request.setCharacterEncoding (UTF-8) doesn't work ? Hi, I'm having a problem with HttpServletRequest.setCharacterEncoding(UTF-8). Basically, tomcat seems to ignore it completely