• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Question in MDB

 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which the following statement are true about MDBs invoked in transaction?
1. MDB must commit or rollback transaction before the completion of onMessage() method.
2. MDB can not use BMT demacation.
3. If a transaction of a CMT bean is rolled back, the message hadling also rolled back.
My answer 1, 3 are correct. That all right?
Please, let me .
 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by somkiat puisungnoen:
Which the following statement are true about MDBs invoked in transaction?
1. MDB must commit or rollback transaction before the completion of onMessage() method.
2. MDB can not use BMT demacation.
3. If a transaction of a CMT bean is rolled back, the message hadling also rolled back.
My answer 1, 3 are correct. That all right?
Please, let me .



Yes Somkiat, 1 & 3 are correct. 2 is false, coz MDBs sure can use BMT.
As for Option 3, I wouldn't say that message handling is rolled back, rather, the message acknowledgement is never sent to the JMS destination
 
reply
    Bookmark Topic Watch Topic
  • New Topic