On Tue, Sep 11, 2012 at 3:28 PM, Marco Crivellaro <marco.cr...@gmail.com> wrote: > > Claus Ibsen-2 wrote >> >> Give 2.10.1 a try >> > > 2.10.1 have issues as well > > valid uri: ftp://us%40r@host?password=t%26st > is normalized to invalid uri: ftp://us@r@host?password=t&st >
The %NN is denoting a decimal encoded value, so that becomes encoded to the char it represents. So if your password is having a % sign then encode that as well to its encoded value, I think % is %37 or something a like that. valid uri: ftp://us%40r@host?password=t%3726st > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Issues-with-URI-containing-40-or-26-tp5719118p5719121.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen ----------------- FuseSource Email: cib...@fusesource.com Web: http://fusesource.com Twitter: davsclaus, fusenews Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen