Reputation: 779
I have an application which uses JMS api. The Application server used is jboss-5.0.0.CR2. Is there any way to get the version of JMS used?
Upvotes: 0
Views: 3652
Reputation: 779
Here is how to distinguish between JMS version 1.1 and 2.0.
More details: http://www.oracle.com/technetwork/articles/java/jms20-1947669.html
Upvotes: 1
Reputation: 1225
jboss-5.0.0.CR2 is the application server version - not the JMS provider. From what I know, HornetQ is the JMS implementation which JBoss uses. Anyway, since JBoss 5 is Java EE 5 compliant, the JMS API version has to be 1.0. Java EE 6 aligns with JMS 1.1 and Java EE 7 has the latest JMS specification version i.e. 2.0
Upvotes: 0