My web.xml fragment: <filter-name>Set Character Encoding</filter-name> <filter-class>filters.SetCharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>ISO-8859-2</param-value> </init-param> </filter> <filter-mapping> <filter-name>Set Character Encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
In fact when I get request.CharacterEncoding I get iso-8859-2 (Central European) but why my national (polish) chars are wrong encoded??. For the Strings I post submitting the form and try to write into console I get something like ?Â???Â?. What I am doing wrong? Cheers Bartek --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
