Contact the core Jetty developers at
www.webtide.com
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
DOCUMENTATION: Jetty 6 - this wiki. Jetty 7 - at Eclipse. Jetty8 - at Eclipse. Jetty 9 - at Eclipse.
Skip to end of metadata
Go to start of metadata
Integrating with ActiveMQ
For using ActiveMQ queues and topics with Jetty, you have two choices:
- Use queues and topics directly from javascript on the client browser (Ajax)
- Traditional server-side jms api calls
ActiveMQ with Ajax and Jetty
You can use queues and topics directly in your client side javascript very easily and simply. Here's an example of sending a message to a queue:
Here's an example of setting up to receive messages from a queue. All you need do is to add a listener with a unique id, the name of the queue or topic from which you want to receive messages, and the name of a function which will be called back when a message is available.
Here's the plumbing you need to take advantage of this very convenient feature:
- Include these lines in your html:
<script type="text/javascript" src="amq/amq.js"></script>
<script type="text/javascript">amq.uri='amq';</script>
Labels