Rangana Sampath
Rangana Sampath

Reputation: 1467

Creating and accessing JMS message queue from EJB3 and JBoss5

i'm assigned to get a data from a jsp and put that data to a JMS queue in Jboss5 and then access the queue by a client to display that data in a console. i don't have any clue regarding this matter, can you guys please give me some instructions, good tutorials to newbies regarding this?

Upvotes: 0

Views: 903

Answers (2)

Shadowman
Shadowman

Reputation: 12099

I used this article when I was getting started with JMS queues/topics and JBoss 5. It explains how to go about creating the topics and queues themselves:

http://javabeanz.wordpress.com/2009/06/05/configuring-jms-in-jboss-5/

From there, you can leverage JMS clients, MessageDriven Beans, or any number of other mechanisms for grabbing messages off the queue. For that, you should take a look at some of the JMS or JavaEE docs.

Upvotes: 1

Raedwald
Raedwald

Reputation: 48712

Any book on Java Enterprise Edition will tell you about the Java Messaging System (JMS), and how to submit messages to a queue and to fetch them from a queue.

Upvotes: 2

Related Questions