I need to create temporary queues on fly. How is that possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
From your jms Queue/TopicSession object: see QueueSession javadoc. You need to keep the session open for the lifecycle of the temporary queue. Typical usage is for a client to open a session and put a message on a shared processing queue,using the temporary queue in the reply-to field of the message. eg:(pseudo-code)
The MDB ( or listener that read the shared process queue ) will send the response back to the reply-to queue. If the client is dead for any reason, its session is closed and the queue ceased to exist. |
|||
|