Which library should be used to Jboss AMQ connection using JMS

108 Views Asked by At

According to Jboss AMQ guide, AMQ JMS Client 1.1.0 is should be used to connect to broker. But it works only with amqp:// or amqps:// not with tcp:// or ssl:// . Which library we should use for non-amqp but standard JMS connection?

Official sample programs use maven and redhat repo for required library and it is not using AMQ JMS Client 1.1.0.

1

There are 1 best solutions below

4
On

As far as I'm aware, there is no such thing as a "standard JMS connection" because the JMS specification only describes an API and not any kind of wire-level format or connection mechanism. Such details are left up to the implementation.

Is there a specific problem with using AMQP as the protocol even though the client itself fully implements the JMS API?