as far as i see this is a common problem
yesterday there was a discussion about this issue.
as a summary , you can use ParameterParser.class to retreive request
parameters correctly instead of using the simple method.
namely  :
param= req.getParameter("myParam");
param=new String( param.getBytes(), charset ) ; (in your case charset is
UTF-8 )
sometimes this simple method doesn't work .
then use ParameterParser.class  (written by Jason Hunter )
My impression is that tomcat has a problem with retreiving parameters from
different charsets. I must be  a bug.
cheers : )
----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 28, 2001 4:05 PM
Subject: Possible Problem with UTF-8 encoded HTTP Requests


>
> Hi,
> I have a problem with UTF-8 encoded HTTP Requests. Tomcat 3.2.2 treats
them
> as ISO-8859-1 encoded.
> Because this problem ocuurs with IE 5, IE 6, Netscape 4 and Netscape 6.1
it
> seems to be a problem with
> Tomcat. Or has anyone an idea what is going on.
>
> Regards
>
> Thomas
>
>


Reply via email to