We have a application, which reads of JMS and does some database transactions, all as part of one XA transaction.. If we find the message has some problems, we want to rollback the database, but we don’t want the rollback off JMS to have us read the message again(we don't want the MDB to trigger the entire process one more if rollback was previously initiated).
|
feedback
|
|
To be sure I understand you correctly: you have a transactional message-driven bean that performs some actions on database. You still want the MDB to be a part of XA transaction, but you don't want the database actions to influence the state of the transaction in which the MDB takes part in. That being said, there are two solutions:
| |||
|
feedback
|