You might try working around it by setting the password directly in the configuration.
FtpEndpoint endpoint = (FtpEndpoint) camelcontext.getEndpoint(uristring); FtpConfiguration configuration = endpoint.getConfiguration(); configuration.setPassword(password); Don On Thu, Aug 30, 2012 at 8:45 AM, Hilde <[email protected]> wrote: > Hello and thanks for answering! > > We are using Apache Camel 2.10.0! > > However just encoding the special characters does not help: > > String encodedPwd = URLEncoder.encode("pR+F3Snb}?", "UTF-8") > > With the result of the encoded string camel ftp cannot connect. > > Hilde > > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Endpoint-uri-Questionmark-as-part-of-password-tp5718378p5718390.html > Sent from the Camel - Users mailing list archive at Nabble.com.
