deepak
deepak

Reputation: 19

connect to ibm mq broker using activemq client

I used IBM MQs on my local machine to connect to a remote IBM MQ Queue Manager on a client machine for sending and receiving messages. Due to some issues I need to uninstall IBM MQs on my end. Can I connect to the client remote queue manager using Apache ActiveMQ? (With SSL)

If possible please guide me how to proceed with it. If not please suggest any alternative solutions to connect.

Upvotes: 1

Views: 2743

Answers (1)

T.Rob
T.Rob

Reputation: 31832

No. Connect to it using the WebSphere MQ Client. It is freely downloadable as SupportPac MQC75 and includes support for several languages, including C and Java. Rather than just grabbing the jar files, please install the entire client distribution. IBM includes a number of diagnostic utilities, tracing and so forth in that distribution. These make debugging much easier and IBM requires them to be installed if you open a support ticket. Since the client is free, requiring the diagnostic tools to be installed seems reasonable.

The documentation for the client is here.

Active MQ uses a different wire protocol and its client won't work with WebSphere MQ.

Upvotes: 2

Related Questions