How 'messaging' supported in EJB 2.0 Specification?
Answer / 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 |
what is mean by dll ? Please answer me. Advance thanks.
When was ejb developed?
Is is possible for an ejb client to marshal an object of class java.lang.class to an ejb?
What is stateless and stateful session bean in ejb?
What does @singleton annotation do?
explain why we say stateless beans does not maintain conversation state besides statefull maintains conversation state. give some examples...
How ejb invocation happens?
What is a Java Bean?
What is EJB server provider?
Can Container managed Bean-Managed Persistence ?
Life cycle methods in stateless Session Beans?
How is an entity bean created?