我正在使用apache-servicemix-4.3.1-fuse-01-15并且正在进行热部署。
我在 service-mix 的 deploy 文件夹中放置了一个蓝图 xml,如下所示
<blueprint
xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="file://D:/apache-servicemix-4.3.1-fuse-01-15/apache-servicemix-4.3.1-fuse-01-15/source/?recursive=true" /><!--sample path of source folder-->
<to uri="file:////192.168.68.215/Fuse"/><!--sample path of destination folder-->
</route>
</camelContext>
</blueprint>
如您所见,我想将文件从本地 pc 传输到另一台计算机。但是在日志中它给出了以下错误,尽管我可以访问 to 中提到的路径。
Caused by: java.io.FileNotFoundException: \\192.168.68.215\Fuse\core_logs-12012012\core-logs_20110908 - Copy - Copy (4)\core-logs_20110908.log (The system cannot find the path specified)
如果我用我的本地目录路径替换 IP,它工作正常。
我很想知道这里出了什么问题。
我应该使用 ftp、sftps 还是 ftp。是不是我正在做的事情永远行不通。我需要提到用户名和密码吗?