> A method we have used with success for inbound request encoding is to add a
> Servlet Filter to our application whose sole job is to call
> request.setCharacterEncoding("UTF-8")
> 
> Allistair.

And you might consider adding a call to:

    response.setContentType( "text/html; charset=UTF-8" );

In the same filter. It can be reset if a servlet (or JSP) needs to do
something different, like downloading files.

Harry Mantheakis
London, UK


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to