It seems to me that this is probably a pretty simple question, but this is my first foray into JMS, so I'm a little unsure.
I am trying to write to an existing JMS queue (and then read from another queue), for which I know the queue name, host, queue manager and channel. How to get a link to this queue as an object javax.jms.Destination?
All the examples I found include a call javax.jms.Session.createQueue(String), but since this queue already exists, I don’t want to create another one, right? Or I do not understand what is happening?
If that matters, I use the com.ibm.msg.client.jms driver.
Thank!
source
share