Hi Chris,

thanks for your Answer. 

My Problem is, that the encoding is done by JavaScript at the Cilent and 
therefore with the clients charset, in Germany normally ISO-8859-1.

With most for the other special characters this works fine, but some won't work 
especially the ANSI (ALT) 0150.

What I have tried is: encode the String by encodeURI. But then I've Problems 
with my German Characters (ÄÖÜ).

Maybe you have some more suggestions.

Many thanks in advance

Christian


> For example with:
> 
> http://localhost/myapp/index.jsp?test=test&test2=%u2013test2&test3=test3 
> 
> I get only test and test3, test2 is missing completely.

You have encoded your character improperly. URLs must be encoded using
the UTF-8 charset, and then run through HttpServletResponse.encodeURL,
which is likely to result in something more like:

....&test2=%wx%yztest2&test3...



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to