Kico Lobo
Kico Lobo

Reputation: 4404

Is it possible to have a JMS server without an application server?

does anyone here knows if there exists a JMS server that could be executed on Tomcat or without an application server?

Upvotes: 9

Views: 4659

Answers (4)

mjn
mjn

Reputation: 36654

Open Message Queue (OpenMQ) is the default JMS broker in the GlassFish application server.

OpenMQ supports non Java clients and also runs standalone.

The next version (4.4) is about to be released with J2EE 6 and NetBeans 6.8. OpenMQ is ready for production use.

Upvotes: 1

John Harris
John Harris

Reputation: 332

RabbitMQ also comes with a standalone broker and features AMQP

Upvotes: 1

skaffman
skaffman

Reputation: 403481

Yes, several.

and several others, but those are are the big ones.

Upvotes: 9

Cowan
Cowan

Reputation: 37543

ActiveMQ comes with a standalone broker which can be run independently from the command line.

Upvotes: 5

Related Questions