On 10/18/19 8:00 AM, JackOfAllTrades wrote:
Answering my own question....again....
So basically, just create the producer without initializing with a
queue(temporary or otherwise). This seems to be different behavior from CMS
then of JMS
Since you don't provide your code it is unclear what exactly you did but
from the sounds of it that is behavior of both JMS and CMS. A JMS
MessageProducer that is created with a destination instead of null as
the arg would be tied to that destination for its lifetime.
Fixed destination = session.createProducer(myQueue);
Anonymous producer = session.createProducer(null);
--
Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html
--
Tim Bish