On Mon, Jan 11, 2010 at 9:12 AM, Jos Snellings <jos.snelli...@pandora.be>wrote:

> Thanks, I will try CharacterEncodingFilter!
> I will lookup in the code were filtering takes place, because the
> problem is rather that it looks like the form data are filtered twice.
>
> In addition, do I remember right that there used to be a cocoon servlet
> setting,
>    <init-param>
>        <param-name>form-encoding</param-name>
>        <param-value>UTF-8</param-value>
>    </init-param>
>
> Cheers, thanks for the hint. I will post the result... I will certainly
> not be the only person who is confronted with this problem.
>

There are so many places to set the encoding.  And just for fun, you can
have different encodings for query string parameters and form-data in the
body in the same request.  Sigh.

I've had good luck with
CharacterEncodingFilter<http://static.springsource.org/spring/docs/2.5.6/api/org/springframework/web/filter/CharacterEncodingFilter.html>though.

-Dom

Reply via email to