vote up 2 vote down star

Well, actually JBoss does send the message, but only when the current transaction started by the EJB is finished.

We have this problem with JBoss 4.0.3 and Spring's JmsTemplate. An EJB sends a message to a queue with a temporary queue as the reply_to field. Then, inside the same transaction, we listen for the response given by the first MDB. The problem is that the JmsTemplate's method "send" isn't executed after the transaction have finished. So, by the time the message is sent to the queue, and processed by the MDB, the listener of the temporary queue is gone.

This is called "Synchronous Reception"

Two things change this behavior but does raise some concerns:

  1. Change the EJB's transaction type to BMT. (Concern: BMT sucks)

  2. Create a thread that all it does is to call the JmsTemplate.send() method.

As a side note, this is an EJB that is working correctly on a weblogic environment, and the message does get sent when it should, in the middle of the transaction not when it's over.

Thanks for any help.

flag

67% accept rate
This behaviour is the same on every JBoss version I've tested: 4.2, 5.0 and 5.1 – Ubersoldat Nov 17 at 11:07

2 Answers

vote up 0 vote down

You could wrap the JMS template in code, either a Stateless session bean or a service method using Spring's transaction management, that uses a transaction propagation of REQUIRES_NEW. That way the sending of the message is in its own transaction that will commit the sending of the message outside the scope of the wrapping transaction.

I'm not sure why this would work on Weblogic though. My guess would be that on Weblogic it's not recognizing the queue as an XA Queue.

link|flag
Thanks Jason, I'll take a look at this solution and see if things work as expected. – Ubersoldat Nov 17 at 11:00
vote up 0 vote down

JBoss's behaviour is correct. JMS is a transactional API, and sends should only be executed when the tx commits.

It may be possible to convince JmsTemplate not use the current transactional context, although it makes a point of trying to hide the unpleasantness of the JMS API from you.

link|flag
"and sends should only be executed when the tx commits" But this disallows any possible use of synchronous receptions. – Ubersoldat Jun 22 at 9:40
Within the context of a transaction, yes. But if you can persuade JmsTemplate to execute outside of that context, then you should be OK. Alternatively, don't use JMSTemplate - it's just a wrapper around the JMS API. – skaffman Jun 22 at 9:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.