> I desperatly try to POST UTF-8 data to an application using struts.
> GET method works perfectly fine, but post does not.
> I am using CharacterEncodingFilter
> All pages have Content-Type header
I assume you're calling:
response.setContentType( "text/html; charset=UTF-8" );
You'll also want to specify the following HTML header meta-tag in your JSPs:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
I'm not using Struts, so I account account for that fact.
HTH
Harry Mantheakis
London, UK
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]