2013-11-27 66 views
0

根據link,在Linux系統中,FTP文件移動或刪除(在刪除後將文件移動到.folder文件夾中)出現問題。Apache Camel FTP 550在刪除Linux中的文件時出錯

修復問題從2.10.5開始。但在Jboss Fuse Server 6.0中,默認功能是2.10.0。請向我們建議解決此問題的最佳方法。

+0

要獲得幫助與JBoss保險絲產品,並得到一個熱修復/解決方法等,應使用紅帽客戶門戶:https://access.redhat.com/home –

+0

是的,我們能做到這一點。但問題是現在我們在POC工作。請幫助。 –

+0

CAMEL-6056包含在JBoss Fuse 6.0中。也許你有一個不同的/相關的問題。您在下載JBoss Fuse 6.0時可獲得30天的免費支持,您可以使用它獲得幫助。 –

回答

0

最後我找到了答案,問題是commons-net-3.2 jar。我升級到3.3版本,現在它的工作。

--Upgrade the version of commons 
uninstall commons-net 3.2 version 
install mvn:commons-net/commons-net/3.3 

--Steps in Configuring Fuse Server 

1. To view dependencies of a project bundle 
    command -> dev:show-tree bundle-id 

2. To uninstall a bundle : 
    uninstall bundle-id 
    uninstall commons-net 3.2 version 

3. To install a bundle : (-s means start bundle immediately after installation is successful) 
    install -s mvn:commons-net/commons-net/3.3 

4. restart your project bundle. 

5. Then restart the karaf server. 
+0

感謝您分享您的解決方案 –