I have recently begun using JMS and I have run into the scenario as explained below:
EJB (Bean Managed):
{ User Transation :
receive msg from QueueA
send same msg over to QueueB
End of User Transaction
}
QueueB MDB:
{ I see the JMS message in Queue B (using a QBrowser), but the MDB of Queue B, i.e. OnMessage() method never gets invoked.
}
Am I missing something wrt the settings ? Please guide.