A coworker of mine created a basic contact-us type form, which is mangling accented characters (è, é, à, etc). We\'re using KonaKart a Java e-commerce platform on Struts 1.
The request.getCharacterEncoding() relies on the Content-Type request attribute, not Accept-Charset
request.getCharacterEncoding()
Content-Type
Accept-Charset
So application/x-www-form-urlencoded;charset=IS08859_1 should work for the POST action. The <%@page tag doesn't affect the POST data.
application/x-www-form-urlencoded;charset=IS08859_1
<%@page