Henryk Konsek created CAMEL-5484:
------------------------------------

             Summary: URISupport.normalizeUri different result from camel 2.8.2 
to 2.10.0
                 Key: CAMEL-5484
                 URL: https://issues.apache.org/jira/browse/CAMEL-5484
             Project: Camel
          Issue Type: Bug
    Affects Versions: 2.10.0
            Reporter: Henryk Konsek
            Assignee: Henryk Konsek
             Fix For: 2.11.0


>From Marco's message [1]:


I am migrating my application from Camel 2.8.2 to Camel 2.10.0 and found
following issue:

when normalizing a uri with URISupport.normalizeUri which contains %26 in
one of its parameters the entity is transformed to '&' and essentially lost
from the parameter value; this was not happening with camel 2.8.2.

for instance normalizing following URL:
"ftp://user@host/doveci?password=pass%26";

with camel 2.10.0 the result is following:
"ftp://user@host/doveci?&password=pass";

with camel 2.8.2 the result is following:
"ftp://user@host/doveci?password=pass%26";

it looks like in camel 2.10.0 '%26' is decoded to '&' and moved at the very
beginning of the string (possibly because camel thinks it is a parameter
named null string) resulting in an invalid Uri.

is there any way to workaround/fix this? I can't force all my customers to
avoid using & on their passwords.

[1] 
http://mail-archives.apache.org/mod_mbox/camel-users/201207.mbox/%[email protected]%3E


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to