Hi, I am using websphere 6.0 and created message driven beans to handle the messages from MQ. When onMessage() is triggered, I am doing some DB update and am wondering how to handle when the DB is down. The message gets consumed but it missed DB update. I am using bean managed persistence. Can someone help me with how to handle this situation ?
Look at "Transacted JMS sessions". What this means is that if your DB update fails, then the transaction is rolled back and the message is "re-delivered".