On 5/10/05, Bernhard v. Fromberg <[EMAIL PROTECTED]> wrote: > Hi all, > > 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 > > java1.5.0 update 2 > Tomcat 5.0.27 > various Un*x systems. > I think this might be a similar question to one I asked recently and the following helped me
---------- Forwarded message ---------- From: Mark Thomas <[EMAIL PROTECTED]> Date: Apr 6, 2005 4:14 PM Subject: Re: URL encoding/decoding of UTF-8 characters - Hide quoted text - To: Tomcat Users List <[email protected]> It is a lack of agreed standard problem. You can force Tomcat to use UTF-8 encoding by setting the URIEncoding parameter on the connector. There are some other parameters that you can set as well. See http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/http.html ---------- End Forwarded message ---------- Using link in this mail from the tomcat user maiIing list I have changed my connector settings to: <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8" /> <Connector port="8443" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" debug="0" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" URIEncoding="UTF-8" /> That is I have added URIEncoding="UTF-8" and characters are now decoded correctly. Steve --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
