Our organization is moving towards a new case management system. One of the functions that it has is the ability to publish XML files when certain conditions are met. I have that portion all set up and I get an XML document in a network folder.
Disclaimer: I have no knowledge ActiveMQ and/or Camel - complete newbie!!
I have recently set up ActiveMQ on a server. I believe it is working correctly because I can send from the example.A queue and it creates example.B queue with the message in it.
I have a camel.xml file that I have put the following piece of code:
<route>
<description>Leslie Odyssey Route</description>
<from uri="file://servername.domain.gov/MetroFileDrop"/>
<to uri="activemq:queue:Odyssey.Queue"/>
</route>
Can someone tell me what more I need to do in order to get the XML file that is put in the MetroFileDrop folder moved to the Odyssey.Queue?
Thanks, leslie