Hello,
Im using child instances to keep different clients separated, but several
clients may use the same units.
What I didnt realize, was that activemq was shared between instances;
probably for a good reason.
But does this mean that i have to name the queues and topics dynamicly for
each instance?
I.e., if i just make camel route like from("activemq:queue:someName") and
deploy the unit in several instances, any instance may pick up the messages
sent from any instance. (rather than message put on queue X in instance A
only being picked up by units in instance A)
So, is there another way to keep messages separated within an instance other
than by naming (or like I did now: switch to seda)
/linus