Hi Himanshu,
I'm using the relative path only, my camel route looks something like this
from("sftp://hostname/home/mydir/xmls?username=username&password=password";).
Himanshu Mittal wrote
> From Camel 2.16 onward it does not support absolute paths.
> Can you change ftp.location.dir to a rel
>From Camel 2.16 onward it does not support absolute paths.
Can you change ftp.location.dir to a relative dir and verify ?
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-route-with-camel-version-2-16-0-is-polling-directory-but-not-readingany-files-from-sftp-locati3-tp
Try adding create=false to the end of the broker URI - i.e
vm://localhost?create=false
> On Apr 23, 2016, at 5:54 AM, nicolasduminil
> wrote:
>
> Hello,
>
> I'm trying to run a simple route copying a file content to a JMS destination
> with ActiveMQ. here is the code :
>
> public class MyRou
Hi, I have a below camel route which is used to poll files from the sftp
location, the sftp location is polled in both the cases. But, when I use
camel 2.16.0 version in my classpath, the directory is being polled but
cannot see that any files are being read from there. the same code works
fine usi