A Java EE application starts a transaction, attempts a database insert using JDBC, and sends a
message to an MDB over a transactional JMS Queue. Upon receipt of a message, the MDB
attempts an insert in a different database using JDBC. What is NOT a possible result after
attempting to commit the application’s transaction?
A.
The application performs an insert and the MDB performs an insert.
B.
The application performs an insert and the MDB does NOT perform an insert.
C.
The application does NOT perform an insert and the MDB performs an insert.
D.
The application does NOT perform an insert and the MDB does NOT perform an insert.