Re: URIEncoding and POSTS

2006-09-13 Thread Mark Thomas
Mike Wannamaker wrote: > I can specify URIEncoding="UTF-8" in Tomcat's connector settings within the > server.xml file. Now, my Tomcat server correctly reads the URL GET > parameters correctly...sending out "Hello, José!" or "Hello, 田中!" as > expected. > > However, there's still a problem. > > W

RE: URIEncoding and POSTS

2006-09-12 Thread Derrick Koes
Use a servlet filter, like: public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { logger.debug("set request character encoding to " + encoding); request.setCharacterEn