Author |
Message
|
nathanw |
Posted: Fri Jul 06, 2012 3:38 am Post subject: CCDT Windows to Solaris |
|
|
 Knight
Joined: 14 Jul 2004 Posts: 550
|
OK guys putting this out there
Environment is mainly Solaris but an application runs on Windows> This will use a client connection to the Solaris MQ Server
So we install the client on windows and initial testing using an MQSERVER variable works fine we can put a message, using amqsputc QUEUENAME across the network on to a queue on the Server - HUZZAH
We then build the connectivity using a CCDT
Create the SVRCONN and CLNTCONN channels on Solaris
Copy AMQCLCHL.TAB file to shared unix drive
Create MQCHLLIB and MQCHLTAB variables to point at shared drive and AMQCLCHL.TAB
Delete the MQSERVER vqriable.
So when we run the amqsputc QUEUENAME and we get
2538 MQRC_HOST_NOT_AVAILABLE
SVRCONN
DEFINE CHANNEL(XXXX.SVRCONN) CHLTYPE(SVRCONN) TRPTYPE(TCP) DESCR('Server-connection to XXXX')
CLNTCONN
DEFINE CHANNEL(XXXX.SVRCONN) CHLTYPE(CLNTCONN) TRPTYPE(TCP) CONNAME(XX.XXX.XX.XXX) QMNAME(XXXXXXQM) DESCR('XXXX Client-connection to Server')
The error we are seeing on the windows box is
Code: |
Remote host 'YYYYYY (YY.YYY.YY.YYY) (1414)' not available, retry later.
The attempt to allocate a conversation using TCP/IP to host 'YYYYYY (YY.YYY.YY.YYY) (1414)' was not successful. However the error may be a transitory one and it may be possible to successfully allocate a TCP/IP conversation later.
Try the connection again later. If the failure persists, record the error values and contact your systems administrator. The return code from TCP/IP is 10061 (X'274D'). The reason for the failure may be that this host cannot reach the destination host. It may also be possible that the listening program at host 'YYYYYY (YY.YYY.YY.YYY) (1414)' was not running. If this is the case, perform the relevant operations to start the TCP/IP listening program, and try again.
|
YYYYY is the Windows box and ip address
So it seems ot be failing on the connection but it is looking for the Windows box not the Solaris
Any ideas?  _________________ Who is General Failure and why is he reading my hard drive?
Artificial Intelligence stands no chance against Natural Stupidity.
Only the User Trace Speaks The Truth  |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Jul 06, 2012 3:47 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
You need to
Code: |
amqsput QUEUENAME XXXXXXQM |
|
|
Back to top |
|
 |
zpat |
Posted: Fri Jul 06, 2012 4:10 am Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
or even
amqsputc QUEUENAME XXXQM |
|
Back to top |
|
 |
nathanw |
Posted: Fri Jul 06, 2012 4:19 am Post subject: |
|
|
 Knight
Joined: 14 Jul 2004 Posts: 550
|
just jeffs deliberate mistake for the day  _________________ Who is General Failure and why is he reading my hard drive?
Artificial Intelligence stands no chance against Natural Stupidity.
Only the User Trace Speaks The Truth  |
|
Back to top |
|
 |
nathanw |
Posted: Fri Jul 06, 2012 5:10 am Post subject: |
|
|
 Knight
Joined: 14 Jul 2004 Posts: 550
|
Issue is now resolved. I used MO72 support pack to edit the CCDT and connectivity started working once I had correct values.
Think just putting the problem up here and looking at other issues helped me _________________ Who is General Failure and why is he reading my hard drive?
Artificial Intelligence stands no chance against Natural Stupidity.
Only the User Trace Speaks The Truth  |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Jul 06, 2012 5:10 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
amqsput, amqsputc, whatever it takes... |
|
Back to top |
|
 |
bruce2359 |
Posted: Mon Jul 09, 2012 2:06 pm Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
nathanw wrote: |
Issue is now resolved. I used MO72 support pack to edit the CCDT and connectivity started working once I had correct values.
Think just putting the problem up here and looking at other issues helped me |
What correct values resolved this for you? How will you code SVRCONN and CLNTCONN definitions differently to avoid this error in the future? _________________ 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 |
|
 |
|