Author |
Message |
Topic: OS/400 wrkmqmaut - &class |
pnicolay
Replies: 1 Views: 2905
|
Forum: General IBM MQ Support Posted: Tue Dec 04, 2012 3:14 am Subject: OS/400 wrkmqmaut - &class |
See http://www-01.ibm.com/support/docview.wss?uid=swg21611631 |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Mon Dec 13, 2010 12:10 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
I reopened the PMR to get some clarification on this... more later. |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 10, 2010 1:10 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
This is what IBM Support told me...
The CCDT file version should be the same as the application. This means if the application use WMQ client V7, you need to create CCDT with WMQ V7 and if applica ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Thu Dec 09, 2010 4:10 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
Yes, everything is working fine now... the application is no longer locking up on the new Queuemanager statement.
Apparently a WMQ Client v7 is not capable of using a WMQ Server v6 generated CCDT f ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Thu Dec 09, 2010 1:54 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
Ignore my previous remark... since MQCHLLIB and MQCHLTAB was set for my test application, Websphere MQ updated that AMQCHLTAB.CHL file offcourse, and not the one in qmgrs/test/@ipcc
All works fine ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Thu Dec 09, 2010 1:25 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
According to IBM, a CCDT file created on a WMQ v6 server will not work with a WMQ v7 client.
I therefore created my client connection channel via Webpshere MQ Explorer on a WMQ 7, however the AMQCL ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Sun Dec 05, 2010 10:30 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
How did you copy the file to Windows? Did you ftp as a "binary" file or ASCII file? It must be copied as a binary file.
The file has been copied via NetServer (which is an SMB emulation ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Sat Dec 04, 2010 9:19 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
By not specifiying a port number in the CONNAME, MQ will default to 1414. Hence, that is why it is locking up.
I know... but the listener is active on the default port. Also in the trace files I ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 4:43 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
I can find the following (quite some stuff omitted)...
MQCONNX 'MYQM'
xcsGetEnvironmentString[MQCHLLIB] = 'C:\test'
xcsGetEnvironmentString (rc=OK)
GetEnv[MQCHLLIB] = ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 4:03 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
I'm testing the C# stuff for someone elses project, for all the rest we use Java without a single issue.
I did a trace (total time 6 seconds) ... and got 241 MB... which I read quickly but personal ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 3:42 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
As stated various times before... it works fine using MQEnvironment (for specifying all the required parameters), as well as from a Java client program... so there's nothing wrong with the queuemanage ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 3:31 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
To use the second option, amqsput client version, (amqsputc) you need an environment variable defining a channel to a queue manager, SET MQSERVER=something. Did you set MQSERVER?
No, not MQSERVER.. ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 2:14 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
No, I don't get the AMQ2058 anymore since I changed my new Queuemanager as follows...
connProps.Add(MQC.TRANSPORT_PROPERTY, MQC.TRANSPORT_MQSERIES_CLIENT);
MQManager = new MQQueueManager& ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Fri Dec 03, 2010 1:51 am Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
I can confirm that following names all match;
- name of the actual queuemanager on iSeries
- name of the queuemanager in the client connection channel
- name of the queuemanager on the new statem ... |
Topic: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
pnicolay
Replies: 55 Views: 52116
|
Forum: IBM MQ API Support Posted: Thu Dec 02, 2010 11:42 pm Subject: 2058 MQRC_Q_MGR_NAME_ERROR with use of MQCHLTAB in C# |
The installation is a Websphere MQ Server 7.0.1.3 on my PC (of which I don't use the server part, it itsn't active). I presume this is a valid client as well, I doubt if I can install a seperate clie ... |