Hi

Seems that there is a bug if you try to use ftp component with anonymous
login eg.
from("ftp://myftphost/myfolder";).to("file://target/transfer");

Camel 2.4.0 will try to do a anonymous login with user=anonymous and
password = null with the result that you get a reply code 500 when sending
null as password.

The workaround is to set up the route like:
from("ftp://anonym...@myftphost/myfolder?password=";).to("file://target/transfer");

Seems that Camel-ftp should send "" as password instead of null.

Thanks 
Preben
-- 
View this message in context: 
http://camel.465427.n5.nabble.com/anonymous-FTP-login-fails-tp2846235p2846235.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to