Author |
Message
|
itsme_001 |
Posted: Wed Jan 05, 2011 7:25 am Post subject: MQ7 client to MQ5.3 server conn |
|
|
Disciple
Joined: 02 Feb 2009 Posts: 157
|
HI,
I'm trying to establish a connectiion between a Linux MQ7 client and an AIX MQ5.3 server. tried the below and I'm getting an error
set MQSERVER='TEST.SV/TCP/x.x.x.x(1985)'
[mqm@Linuxdev bin]$ ./amqscnxc -x x.x.x(1985)' -c TEST.SV PROD.QMGR
Sample AMQSCNXC start
Connecting to queue manager PROD.QMGR
using the server connection channel TEST.SV
on connection name x.x.x.x(1985).
MQCONNX ended with reason code 2538
[mqm@Linuxdev bin]$
Can anyone suggest where have I gone wrong? |
|
Back to top |
|
 |
bruce2359 |
Posted: Wed Jan 05, 2011 7:38 am Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
And when you looked up ReasonCode 2538, you discovered that it means...what?
What problem-determination steps did you perform? What were the results? _________________ I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live. |
|
Back to top |
|
 |
exerk |
Posted: Wed Jan 05, 2011 7:40 am Post subject: |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
1. Not checking what the error code means?
2. Not checking the syntax for the command? _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
Vitor |
Posted: Wed Jan 05, 2011 7:49 am Post subject: Re: MQ7 client to MQ5.3 server conn |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
itsme_001 wrote: |
Can anyone suggest where have I gone wrong? |
Using a modern client with an out-of-support server version? _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
itsme_001 |
Posted: Wed Jan 05, 2011 11:15 pm Post subject: Re: MQ7 client to MQ5.3 server conn |
|
|
Disciple
Joined: 02 Feb 2009 Posts: 157
|
Vitor wrote: |
itsme_001 wrote: |
Can anyone suggest where have I gone wrong? |
Using a modern client with an out-of-support server version? |
but this is feasible.....right!!!!!!!! |
|
Back to top |
|
 |
exerk |
Posted: Thu Jan 06, 2011 3:06 am Post subject: Re: MQ7 client to MQ5.3 server conn |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
itsme_001 wrote: |
Vitor wrote: |
itsme_001 wrote: |
Can anyone suggest where have I gone wrong? |
Using a modern client with an out-of-support server version? |
but this is feasible.....right!!!!!!!! |
But not advisable. Look closely at the second answer-as-a-question I posted... _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
HubertKleinmanns |
Posted: Thu Jan 06, 2011 10:54 pm Post subject: Re: MQ7 client to MQ5.3 server conn |
|
|
 Shaman
Joined: 24 Feb 2004 Posts: 732 Location: Germany
|
itsme_001 wrote: |
HI,
I'm trying to establish a connectiion between a Linux MQ7 client and an AIX MQ5.3 server. tried the below and I'm getting an error
set MQSERVER='TEST.SV/TCP/x.x.x.x(1985)'
[mqm@Linuxdev bin]$ ./amqscnxc -x x.x.x(1985)' -c TEST.SV PROD.QMGR
Sample AMQSCNXC start
Connecting to queue manager PROD.QMGR
using the server connection channel TEST.SV
on connection name x.x.x.x(1985).
MQCONNX ended with reason code 2538
[mqm@Linuxdev bin]$
Can anyone suggest where have I gone wrong? |
This is a Windows syntax, but you are working on Linux. Use
Code: |
export MQSERVER=TEST.SV/TCP/'x.x.x.x(1985)' |
Regard that the quotes only surround the address of the MQ server. _________________ Regards
Hubert |
|
Back to top |
|
 |
exerk |
Posted: Fri Jan 07, 2011 3:33 am Post subject: Re: MQ7 client to MQ5.3 server conn |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
HubertKleinmanns wrote: |
...This is a Windows syntax, but you are working on Linux... |
Irrespective of platform, the command syntax is incorrect for when the MQSERVER variable is set (even if the variable is set correctly), which is the point I have been making. _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
|