Reputation: 36644
For tests of JMS in WebSphere I have downloaded the developer version of WebSphere AS 8.0.
Is WebSphere MQ (which is available as a separate product from IBM) already included in this version, or does WAS use a different JMS provider?
Update: I know that in the (Apache Geronimo based) IBM WASCE (the 'community edition'), Apache ActiveMQ is used as the default JMS provider.
Which product is used in WAS 8.0 / 8.5, a proprietary IBM product or an open source product like ActiveMQ as suggested in the answer below?
Upvotes: 3
Views: 1888
Reputation: 15273
WebSphere Application Server comes with a JMS provider called Service Integration Bus (SIBus)
. This is also know as the default messaging provider of WebSphere Application Provider and is Java EE compliant messaging engine. It has features like
1) Clustering
2) Supports both P2P and Pub/Sub style of messaging.
3) High Availability
4) Security
5) And can integrate with WebSphere MQ.
Upvotes: 9
Reputation: 12538
Websphere AS comes with its own JMS provider as required by Java EE 6.
The provider isn't MQ. It could be a modified version of ActiveMQ or any other JMS compliant implementation.
Upvotes: 2