2013-11-27 42 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

感谢您分享您的解决方案 –