[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12479807
 ] 

Ralf Hauser commented on HTTPCLIENT-642:
----------------------------------------

when doing the same e.g. on apache httpd plus typo3, I get 
   %26%2333021%3B
that also properly decodes with 
   URLDecoder.decode()

but if I were to escape # as %23 before URI escaping, I'll end up with %2523, 
hmm...

> browser encoded UTF-8 character gets truncated by URI upon escaping
> -------------------------------------------------------------------
>
>                 Key: HTTPCLIENT-642
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-642
>             Project: HttpComponents HttpClient
>          Issue Type: Bug
>    Affects Versions: 3.0.1
>            Reporter: Ralf Hauser
>
> a mozilla 1.5.0.10 get request of an iso-8859-1 form where a user 
> inadvertently entered a chinese character arrives at my tomcat like 
> String url=  "/hp/index.php?address=addr&[EMAIL 
> PROTECTED]&name=Ralf能 GMX&subject=Newsletter"
> the chinese charcter  能 being encoded as 能
>                                 URI uri = new URI(url, false, "ISO-8859-1");
>                               GetMethod httpGet = new 
> GetMethod(uri.getEscapedURI());
>                               log.debug(httpGet.getURI());
>   "/hp/index.php?address=addr&[EMAIL PROTECTED]&name=Ralf&"
> How should I deal with that until the v4 is out? Will that no longer happen 
> there?
>     
> see also HTTPCLIENT-577

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to