Author |
Message
|
mq_c22 |
Posted: Tue Jul 15, 2014 11:17 pm Post subject: Mq client to connect MQ cluster |
|
|
Novice
Joined: 08 Jul 2014 Posts: 14
|
1) There is an environment for Non-MQ setup. If we need to connect to MQ Cluster from Non-Mq environment is Mq client installation in Non-MQ environment only option or other better option available?
2)If the Non-MQ environment has Java application server, Is there any option to connect to MQ? |
|
Back to top |
|
 |
PaulClarke |
Posted: Tue Jul 15, 2014 11:35 pm Post subject: |
|
|
 Grand Master
Joined: 17 Nov 2005 Posts: 1002 Location: New Zealand
|
What do you mean by 'Non-MQ' setup ? Do you mean a machine that doesn't have an MQ Queue Manager on it ? If you do then, yes, the way to connect to MQ from a machine that doesn't have a Queue Manager is to use an MQ client.
Of course if you mean something else then please try and be a little more specific.
Cheers,
Paul. _________________ Paul Clarke
MQGem Software
www.mqgem.com |
|
Back to top |
|
 |
mq_c22 |
Posted: Wed Jul 16, 2014 12:21 am Post subject: |
|
|
Novice
Joined: 08 Jul 2014 Posts: 14
|
Yes. Non-MQ setup I mean there is WMQ installation into that machine. Hence no WMQ QM obviously. In case of Java Application server(Weblogic) in Non-MQ environment any option to connect to WMQ. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Wed Jul 16, 2014 2:54 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
mq_c22 wrote: |
Yes. Non-MQ setup I mean there is WMQ installation into that machine. |
There is or is not MQ installed on this server????
Install the full MQ Client on the Weblogic server.
Reference the jar files where the MQClient install stores them via the classpath.
Do not copy the jar files into different locations.
An app that uses the MQ Client libraries can connect to a queue manager in the MQ Cluster. Or it can connect to multiple queue managers concurrently in the MQ Cluster.
You cannot connect to the MQ Cluster itself. It is impossible. You can only connect to queue managers. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
mq_c22 |
Posted: Wed Jul 16, 2014 3:08 am Post subject: |
|
|
Novice
Joined: 08 Jul 2014 Posts: 14
|
Do you think using Foreign JMS destination configuration in Weblogic Server, we can connect WMQ?
In that case do we still require MQ client? |
|
Back to top |
|
 |
fjb_saper |
Posted: Wed Jul 16, 2014 4:36 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
mq_c22 wrote: |
Do you think using Foreign JMS destination configuration in Weblogic Server, we can connect WMQ?
In that case do we still require MQ client? |
Yes you can and obviously you still need the MQClient as Weblogic unlike WAS does not have an embedded WMQ client. The MQClient will provide you the jars needed for the WMQ implementation of the JMS standard, which I presume you will use in your Weblogic app.
Remember the JMS API does absolutely nothing without the corresponding implementation libraries behind it.
Have fun  _________________ MQ & Broker admin |
|
Back to top |
|
 |
|