Where can I find guidance on integrating JavaScript and JMS (Java Messaging Service)?
I need best practice or installed technology that allows me to directly or indirectly receive messages from a topic and update the site based on the message. I was thinking of creating two components, a servlet for a web module and an MDB (Message-Driven Bean) for an EJB module. The web client will send messages from the JMS topic, and the MDB will handle onMessage.
Does this sound right? Have you seen examples?
Edit: I am using ActiveMQ for JMS.
source
share