Apache Camel FTP 550删除linux中的文件时出错

时间:2013-11-27 09:15:32

标签: java linux ftp apache-camel jbossfuse

根据link,在Linux系统上移动或删除FTP文件(在删除后又将文件移动到.folder)时出现问题。

问题的解决方案可从2.10.5获得。但在Jboss Fuse Server 6.0中,默认功能是2.10.0。请建议我们对此问题进行排序的最佳方法。

1 个答案:

答案 0 :(得分: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.