Ihor M.
Ihor M.

Reputation: 3148

ActiveMQ, STOMP, Java example

Can anyone point me to decent example where Java stomp client is used to connect to ActiveMQ. Also I am interested in following:

Upvotes: 3

Views: 3806

Answers (1)

Tim Bish
Tim Bish

Reputation: 18356

If you really want to use STOMP from Java then you could look at StompJMS which maps quite a bit of the JMS API to STOMP. It doesn't support failover but there aren't a lot of stomp client's that do. When using Java you are better off to use the native JMS client from the ActiveMQ broker as it is going to be the most robust and feature complete client library you will find.

Upvotes: 1

Related Questions