I am using apache-servicemix-4.3.1-fuse-01-15 and I am doing hot deployment.
I have placed one blueprint xml inside deploy folder of service-mix as shown below
<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>
As you can see I want to transfer files to another computer from my local pc.But in the log it is giving following error, though I have acess to the path mentioned in 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)
If I replace the IP with my local directory path, it is working fine.
I am curious to know what went wrong here.
Shall I use ftp,sftps or ftp. Is it the case that what I am doing will never work.Do I need to mentioned username and password.