Answer Posted / munnu
Messaging lets a servlet delegate processing to a batch process either on the same machine or on a separate machine. The servlet creates a message and sends it to a queue. The servlet immediately completes and when the batch process is ready, it processes the message.
Messaging is therefore comprised of three main components:
A Producer creates messages and sends them to a Queue. The Producer could be something like a Servlet.
A Queue stores the messages from the Produces and provides them to a Consumer when ready. The Queue is implemented by the messaging provider.
A Consumer processes messages as they become available in the Queue. The Consumer is typically a bean implementing the MessageListener interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a message in software?
What is jms and activemq?
How does a sender application transport/send a message through jms?
What is JMS administered object?
Explain about session interface?
What is the procedure to configure jms security?
What is difference between queue and topic in jms?
Can we send e-mail messages using JMS?
Are foreign destinations handled within foreign jms messages?
Are there c/c++ interfaces to wls jms?
What is meant by jms?
Explain about publish model?
What are all the features of JMS API in J2EE platform?
Mention the difference between durable and non-durable subscription?
Which messaging is generally used in cases where a message is published by a producer and consumed by multiple subscribers?