This filter sets the encoding header ? Does that help? I get the feeling that posts and gets are sent in different encodings in the CMS: if you fix GET encoding, then POST encoding is screwed, and the other way around :(. I will do some tests to know exactly which encodings are used by which method.
> > why is (3) not utf-8?? > > You can try adding to the web.xml (and add the correct spring jar) > > <filter> > <filter-name>CharacterEncodingFilter</filter-name> > > > <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> > <init-param> > <param-name>encoding</param-name> > <param-value>UTF-8</param-value> > </init-param> > <init-param> > <param-name>forceEncoding</param-name> > <param-value>true</param-value> > </init-param> > </filter> > > > > > afaics, that's all that I can configure as far as encoding goes. Are > these > > settings correct? My problem is that special character form parameters > that > > are posted with GET are not shown correctly. > > > > regards > > Dennis > > > > -- > > Hippo B.V. - Amsterdam > > Oosteinde 11, 1017 WT, Amsterdam, +31(0)20-5224466 > > > > Hippo USA Inc. - San Francisco > > 101 H Street, Suite Q, Petaluma CA, 94952-3329, +1 (707) 773-4646 > > ----------------------------------------------------------------- > > http://www.onehippo.com - [email protected] > > ----------------------------------------------------------------- > > ******************************************** > > Hippocms-dev: Hippo CMS development public mailinglist > > > > Searchable archives can be found at: > > MarkMail: http://hippocms-dev.markmail.org > > Nabble: http://www.nabble.com/Hippo-CMS-f26633.html > > > > > ******************************************** > Hippocms-dev: Hippo CMS development public mailinglist > > Searchable archives can be found at: > MarkMail: http://hippocms-dev.markmail.org > Nabble: http://www.nabble.com/Hippo-CMS-f26633.html > > -- Hippo B.V. - Amsterdam Oosteinde 11, 1017 WT, Amsterdam, +31(0)20-5224466 Hippo USA Inc. - San Francisco 101 H Street, Suite Q, Petaluma CA, 94952-3329, +1 (707) 773-4646 ----------------------------------------------------------------- http://www.onehippo.com - [email protected] ----------------------------------------------------------------- ******************************************** Hippocms-dev: Hippo CMS development public mailinglist Searchable archives can be found at: MarkMail: http://hippocms-dev.markmail.org Nabble: http://www.nabble.com/Hippo-CMS-f26633.html
