learn CAMEL. It seems that, using CAMEL, it is so simple to send a message
from one queue to the other. For example he is one example:
from("activemq:queue1”)
.to("activemq:queue2");
The above two lines will do the job. I have tested and it works. I want to
apply this to real world scenario, I need help from experts how can I do
this:
I have a queue say "queue1" defined in the production environment and I have
"queue2" defined in the Staging environment. There is "customerQueue"
defined in our customer's production environment. From
"queue1" I want to send messages to "queue2" and to "customerQueue". I can
use EIP to send messages from "queue1" to "queue2" and to "customerQueue"
(more than one recipients). What I don't know is how to tell CAMEL where is
"queue2" and where is "customerQueue". Please help me.
--
View this message in context: http://camel.465427.n5.nabble.com/Sending-message-to-different-environment-tp4728380p4728380.html
Sent from the Camel - Users mailing list archive at Nabble.com.