Re: Encoding Issue on POST

2011-01-03 Thread Pid
On 1/3/11 7:17 AM, André Warnier wrote: Try the following : in your form tag, add the attribute enctype=multipart/form-data and try again. Is it possible to include charset attribute? enctype=multipart/form-data;charset=UTF-8 p 0x62590808.asc Description: application/pgp-keys

Re: Encoding Issue on POST

2011-01-03 Thread André Warnier
Pid wrote: On 1/3/11 7:17 AM, André Warnier wrote: Try the following : in your form tag, add the attribute enctype=multipart/form-data and try again. Is it possible to include charset attribute? enctype=multipart/form-data;charset=UTF-8 I don't think so. You can specify

Re: Encoding Issue on POST

2011-01-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 1/2/2011 7:38 AM, André Warnier wrote: Well, I would say that by removing the filter nothing changes, then that proves at least that the filter is useless, doesn't it ? Or that it wasn't actually being used. The filter does have some

Re: Encoding Issue on POST

2011-01-02 Thread André Warnier
Below. vwu98...@lycos.com wrote: Please see below. - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, January 1, 2011 11:46:40 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST vwu98...@lycos.com

Re: Encoding Issue on POST

2011-01-02 Thread vwu98034
the encoding. - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, January 2, 2011 4:38:29 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST Below. vwu98...@lycos.com wrote: Please see below

Re: Encoding Issue on POST

2011-01-02 Thread André Warnier
vwu98...@lycos.com wrote: Thanks very much André for your detailed information. I got the Httpfox for my Firefox today. For some reasons, the POST data section always be blank (a message like request doesn't contain any POST data). I can't figure out the reason so I download Charles Proxy.

Re: Encoding Issue on POST

2011-01-01 Thread André Warnier
vwu98...@lycos.com wrote: The followings are what I have done for a project in regarding of encoding. * %...@page contentType=text/html;charset=UTF-8 pageEncoding=UTF-8% on the first line of JSP files * meta http-equiv=Content-Type content=text/html;charset=UTF-8 That looks fine. * Set

Re: Encoding Issue on POST

2011-01-01 Thread vwu98034
Thanks very much André. Please see the below - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, January 1, 2011 4:26:28 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST vwu98...@lycos.com wrote

Re: Encoding Issue on POST

2011-01-01 Thread Konstantin Kolinko
2011/1/1 vwu98...@lycos.com: * %...@page contentType=text/html;charset=UTF-8 pageEncoding=UTF-8% on the first line of JSP files * meta http-equiv=Content-Type content=text/html;charset=UTF-8 I'd recommend meta http-equiv=Content-Type content=%=response.getContentType()% to make sure that the

Re: Encoding Issue on POST

2011-01-01 Thread André Warnier
vwu98...@lycos.com wrote: Thanks very much André. Please see the below - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, January 1, 2011 4:26:28 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST

Re: Encoding Issue on POST

2011-01-01 Thread vwu98034
Please see below. - Original Message - From: Konstantin Kolinko knst.koli...@gmail.com To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, January 1, 2011 11:36:29 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST 2011/1/1 vwu98...@lycos.com: * %...@page

Re: Encoding Issue on POST

2011-01-01 Thread vwu98034
Please see below. - Original Message - From: André Warnier a...@ice-sa.com To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, January 1, 2011 11:46:40 AM GMT -08:00 US/Canada Pacific Subject: Re: Encoding Issue on POST vwu98...@lycos.com wrote: Thanks very much André. Please

Re: Encoding Issue on POST

2011-01-01 Thread Konstantin Kolinko
2011/1/2 vwu98...@lycos.com: 2011/1/1  vwu98...@lycos.com: * %...@page contentType=text/html;charset=UTF-8 pageEncoding=UTF-8% on the first line of JSP files * meta http-equiv=Content-Type content=text/html;charset=UTF-8 I'd recommend meta http-equiv=Content-Type

Encoding Issue on POST

2010-12-31 Thread vwu98034
The followings are what I have done for a project in regarding of encoding. * %...@page contentType=text/html;charset=UTF-8 pageEncoding=UTF-8% on the first line of JSP files * meta http-equiv=Content-Type content=text/html;charset=UTF-8 * Set URIEncoding=UTF-8 on your Connector in server.xml *