RE: UTF-8 handling differs between two servlets within the same application

2008-06-24 Thread Christoph Pirkl
Hi all, thank you very much for your helpful answers! We could resolve the encoding problem by adding the attribute enctype="multipart/form-data" to the html form. All special chars are received correctly now. Additionally we will add accept-charset="UTF-8" to avoid further problems. Kind re

RE: UTF-8 handling differs between two servlets within the same application

2008-06-23 Thread Christoph Pirkl
e, > FilterChain chain) throws IOException, ServletException { > > request.setCharacterEncoding("UTF-8"); > chain.doFilter(request,response); > } > > public void init(FilterConfig arg0) throws ServletException { > > } > > } > > > On Mon, Jun 23,

UTF-8 handling differs between two servlets within the same application

2008-06-23 Thread Christoph Pirkl
Hi, we are developing an application, where we experience an interesting UTF-8 related behaviour. For the development the team mostly uses Tomcat, since the deployment is much faster and nicer. All tests are repeated on WebSphere, because that is what our customer runs. We are running a T