How 'messaging' supported in EJB 2.0 Specification?
Answer Posted / guest
The EJB 2.0 Specification defines JMS support through a new
type of enterprise bean, the message-driven bean. A
message-driven bean is invoked by the EJB container as the
result of the arrival of a JMS message. To a client, the
message-driven bean is a JMS consumer that implements some
business logic on the server. Clients communicate with
message-driven beans by sending messages to a JMS
Destination (either a Queue or a Topic) for which the
message-driven bean is a MessageListener.
Message driven beans are distinct from both Entity and
Session beans. They have neither home nor remote interfaces.
Instead, they implement the javax.jms.MessageListener
interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In what format is the conversational data written to the disk?
What is passivation and activation in ejb?
Is udp stateless?
What is an ejb context?
Which services are provided to ejb components by the ejb container?
Define Clone?
Why do we use @requestmapping?
can we stop the execution of a method before completion?
why Bean class implements all business method of Remote interface but bean bean class not implements the remote interface
What do you understand by session facade?
What is the difference between ejb and spring?
what is mean by OLE ? Please answer me. Advance thanks.
Is ejbCreate() method mandatory while defining a Session Bean?
What is stateless session bean?
What is the meaning of acid in the connection of transaction management?