• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

JMS - MDB

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can any one please help me in understanding the differences between JMS and MDB. i will be very greatful if i get a explanation with an EXAMPLE.
Thanks in advance
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Anil,

Welcome to JavaRanch


can any one please help me in understanding the differences between JMS and MDB



JMS is a specification. Message Driven Beans (MDB) is a type of EJB which are invoked based on JMS events. MDBs are used for asynchronous processing.

Ex: In JMS, you can have a "queue" to which messages can be delivered. This queue can be listened by a MDB. Whenever a message is delivered to the queue, the JMS server will invoke the onMessage method of the MDB and deliver it the message.
 
reply
    Bookmark Topic Watch Topic
  • New Topic