Answered Questions

  • what is message driven bean? what is advantageous?

    arunmr

    • Feb 20th, 2006

    Hi, A message-driven bean is an enterprise bean that allows J2EE applications to process messages asynchronouslyAdvantages-----------------A single message Driven bean can process messages from multiple clientsThey are invoked asynchronously.

    Anitha Baru

    • Nov 4th, 2005

    It processes multiple JMS msgs asynchronously. It has no home or remote interfaces, and so cannot be directly accessed by internal / external clients. Clients interact with MDB only indirectly by send...

  • What is the difference between JavaBean and EJB

    Answer posted by Mohan on 2005-05-20 08:40:04: Java Beans is intra-process component where as EJB is an Inter-Process component  JavaBeans is particularly well-suited for asynchronous, intra-application communications among software

    Guest

    • Dec 14th, 2005

    JavaBeans- are reuseable,non-deployable components. They can't exist independently.EJB - are deployable, reuesable, server side components. They can exist independently or in integration with other components.