On 6 janv. 05, at 15:52, J.Patterson Waltz III wrote:
Now, I guess I'll just have to try using the character encoding filter Guillaume recommended.
Ack! I'm about to pull my hair out over these encoding issues. I added the SetCharacterEncodingFilter from the Tomcat 5 distribution to my web application, with just enough mods to get some logging output from it so I'd know it was doing its thing.
So now I have the following in place to ensure incoming and outgoing UTF-8 encoding:
- A <%@ page pageEncoding="UTF-8" contentType="text/html;charset=UTF-8" language="java" %> directive
- an acceptCharset="UTF-8" attribute on <html:form> tags
- an enctype="application/x-www-form-urlencoded;charset=UTF-8" attribute on <html:form> tags
- the SetCharacterEncodingFilter, configured to interpret UTF-8 no matter what
and yet I'm *still* getting non-decoded UTF-8 displayed in my pages (i.e. été is été).
Guillaume, did you actually get UTF-8 to work using the filter solution? If so, can you (or anyone) think of anything else I might have missed? Thanks in advance.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]