Hi all,
the following route works OK on a Windows SXM 5.0.0 and 5.0.1 but not with
the latest 5.1.0 release. The route works as expected on the Redhat OS for
all 5+ SMX versions. No error message or warnings. The route just ignores
all files that I drop into the input folder.
@Component
public class TestRoute extends RouteBuilder {
@Override
public void configure() throws Exception {
from("file://{{input.dir}}/?autoCreate=true&preMove=inprogress&move=.done")
.to("{{ftp.protocol}}://{{ftp.username}}@{{ftp.hostname}}"
+ "{{ftp.directoryname}}"
+
"?password={{ftp.password}}&preferredAuthentications=password&binary=true&move=.done&passiveMode=true&readLock=changed");
}
}
--
View this message in context:
http://servicemix.396122.n5.nabble.com/Route-with-File-and-SFTP-endpoints-doesn-t-work-on-SMX-5-1-0-tp5721087.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.