2012-10-25 54 views
0

我必須建立從FTPS服務器下載文件到我的文件系統與駱駝,所以我做了以下一個簡單的路線:駱駝 - 連接到FTPS和下載文件的本地文件系統

from("ftps://[email protected]/test?delay=30000&password=******&fileName=testFile.txt") 
.to("file:/mydir/testtest") 

日誌我沒有看到任何錯誤和路線似乎是正確初始化(我敢肯定,該文件是存在的:)):

18:58:13,947 | INFO | xtenderThread-24 | OsgiSpringCamelContext   | ?         ? | 89 - org.apache.camel.camel-core - 2.8.0.fuse-06-11 | Route: FTPTestRoute 
started and consuming from: Endpoint[ftps://[email protected]/test?delay=30000&password=******] 

這是我設置有FileZilla的連接到服務器FTPS它正在工作

enter image description here

如果我嘗試連接到一個正常的ftp服務器,那麼這條路徑完美工作。

任何幫助?

回答

0

最後我失蹤了2個參數

&passiveMode=true&binary=true 

這些參數而在駱駝我不得不強迫他們

+0

感謝您分享您的解決方案上FileZilla的自動設置。你能把這個標記爲已回答嗎? –