On 7/19/06, Yonik Seeley <[EMAIL PROTECTED]> wrote:
Now the problem: Tomcat 5.5.17 isn't decoding percent-encoded UTF-8,
but instead treating %C3%A9 as two separate characters.

Here's the magic for Tomcat:
http://split-s.blogspot.com/2005/12/internationalized-get-parameters-with.html

edit server.xml and add the following parameter to the connector element:


<Server ...>
 <Service ...>
   <Connector ... URIEncoding="UTF-8"/>
     ...
   </Connector>
 </Service>
</Server>


-Yonik

Reply via email to