I am trying to set up a pretty basic messaging system with ActiveMQ.
I have a network share that another program puts XML files into.
I have an ActiveMQ route set up that I think should be delivering files that are dropped into the network share to my ActiveMQ queue. I am not getting the files delivered to my queue and believe it is because I need to authenticate to the network share.
Can someone help me figure out where in my config files I need to put my NETWORK username and password so the share is accessible to the ActiveMQ?
Or am I going about this completely wrong? I am using the out of the box config for activeMQ and Camel with the exception of my route:
<route>
<description>Leslie Odyssey Route</description>
<from uri="file://servername.domain.gov/MetroFileDrop"/>
<to uri="activemq:queue:Odyssey.Queue"/>
</route>
In my ActiveMQ command prompt console I see the following:
INFO| Route: route2 started and consuming from:
Endpoint[file://servername.domain.gov/MetroFileDrop]
which makes me believe that the route IS there but I never get any files delivered.
Thanks for any info, Leslie
create a folder on your local harddrive that points to your network store and point your camel route to that folder. camel alone doesnt understand network folders.