开发者

javax.jms.InvalidDestinationException: Cannot use a Temporary destination from another Connection

开发者 https://www.devze.com 2023-03-28 01:54 出处:网络
I have a producer which connects to ActiveMQ broker to send me messages to the client. Since it expects some response from the client, it first creates a temp queue and associates it to the JMS repl

I have a producer which connects to ActiveMQ broker to send me messages to the client.

  1. Since it expects some response from the client, it first creates a temp queue and associates it to the JMS replyto header.
  2. It then sends the message over to the broker and waits for the response on temp queue from the client.
  3. Receives the response from the client over the temp queue, performs required actions and then exits.

This works fine most of the times, but sporadically the application throws error messsages saying " Cannot use queue created from another connection ".

I am unable to identify what could cause this to happen as the temp queue is being created from the current session itself.

Did anyone else come across this situation and knows how to fix it?

Code snippet:

Connection conn = myJmsTemp. getConnectionFactory().createConnection();
ses = conn.createSession(transacted,开发者_开发百科ackMode);
responseQueue = ses.createTemporaryQueue();
...
MyMessageCreator msgCrtr = new MyMessageCreator(objects,responseQueue);
myJmsTemp.send(dest, msgCrtr);
myJmsTemp.setReceiveTimeout(timeout);
ObjectMessage response = (ObjectMessage)myJmsTemplate.receive(responseQueue);

Here MyMessageCreator implements MessageCreator interface.

All am trying to do is send a message to the broker and wait for a response from the client over the temp queue. Also am using a pooled connection factory to get the connection.


You get an error like this if you have a client that is trying to subscribe as a consumer on a temporary destination that was created by a different connection instance. The JMS spec defines that only the connection that created the temp destination can consume from it, so that's why the limitation exists. As for the reason you are seeing it its hard to say without seeing your code that encounters the error.

Given that your update says you are using the Pooled connection factory I'd guess that this is the root of you issue. If the consume call happens to use a different connection from the Pool than the one that created the temp destination then you would see the error that you mentioned.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号