Re: Request.setCharacterEncoding question

2004-11-15 Thread Craig McClanahan
; > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED] > Sent: Monday, November 15, 2004 9:57 AM > To: Struts Users Mailing List > Subject: Re: Request.setCharacterEncoding question > > If you've got a copy of Tomcat installed, look a

RE: Request.setCharacterEncoding question

2004-11-15 Thread Randy Eckhoff
--Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 9:57 AM To: Struts Users Mailing List Subject: Re: Request.setCharacterEncoding question If you've got a copy of Tomcat installed, look at: $CATALINA_HOME/webapps/servlets-examples/WEB-INF/

Re: Request.setCharacterEncoding question

2004-11-15 Thread Kris Schneider
If you've got a copy of Tomcat installed, look at: $CATALINA_HOME/webapps/servlets-examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java Quoting Randy Eckhoff <[EMAIL PROTECTED]>: > With the 2.3 servet API, there is a new method: > > request.setCharacterEncoding(String encoding

Request.setCharacterEncoding question

2004-11-15 Thread Randy Eckhoff
With the 2.3 servet API, there is a new method: request.setCharacterEncoding(String encoding) This lets you tell the server a request's character encoding. It is critical that setCharacterEncoding is called BEFORE any request.getParameter is called (or getReader). Otherwise, you are at th