Reputation: 87
I'm using running a Websphere 8.5 installation. I'd like to deploy an MDB using WebsphereMQ JMS Provider. I can see from the Admin Web console that Websphere MQ is enlisted as JMS Provider, however when I try to create a new JMS Connection Factory using WebsphereMQ and use "Test Connection" it fails.
So I just wonder, does WebsphereMQ ships out of the box with the release 8.5 of the application server ? or should I install it separately ?
Thanks a lot
Louis
Upvotes: 2
Views: 1605
Reputation: 31832
When you create the connection factory, queues and topics in the WAS admin console, this generates the administered objects in the JNDI repository but does not create a queue manager or the corresponding objects in the queue manager. Those are administered independently using WebSphere MQ's native admin tools.
dspmqver
command or look in /opt/mqm
or the Windows equivalent which is usually C:\Program Files (x86)\IBM\WebSphere MQ
.MCAUSER('mqm')
(or use the platform equivalent administrative ID if on Windows, iSeries, etc.WebSphere MQ does NOT ship with WAS. The WAS Infocenter discusses this in the topic Installing WebSphere MQ to interoperate with WebSphere Application Server. Note in the same section are several topics on administering JMS resources to talk to MQ and that they make a distinction between managing the administered objects in WAS versus managing the actual objects in the queue manager.
Upvotes: 2