Author |
Message |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Wed Jul 29, 2015 6:36 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
You should not be checking the CompletionCode of the MQQueue class when you do a Put() method. The code should look like:
foreach (DataRow dRow in mqRequests.Rows)
{
try
{
... |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Wed Jul 29, 2015 6:34 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
How did you define your batch of 10 messages? Did you use a transaction? Did you use a COMMIT? Did you use persistent messages? Did you experience a bounce for the ISeries qmgr?
And did you check Ro ... |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Tue Jul 28, 2015 7:02 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
The c# app puts the messages on a queue manager hosted on the iSeries ...
And successfully based on the CC you're getting. So what leads you to the conclusion that they were not in fact successfull ... |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Tue Jul 28, 2015 6:15 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
Hi,
Thanks for your answer.
The c# app puts the messages on a queue manager hosted on the iSeries ...
More precision, please.
Does the c app MQCONNect to the iSeries qmgr OR to the Windows q ... |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Tue Jul 28, 2015 5:54 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
Hi,
Thanks for your answer.
The c# app puts the messages on a queue manager hosted on the iSeries ... |
Topic: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
plivingstone
Replies: 12 Views: 9640
|
Forum: General IBM MQ Support Posted: Tue Jul 28, 2015 5:35 am Subject: IBM MQ (iSeries) - COMPLETION CODE DEFAULTING to Zero? |
Hi
we have a Windows c# application that puts messages on an iSeries Websphere MQ Queue for core system processing.
This application puts tens of thousands of messages on the iSeries MQ every day ... |
Topic: MQRC_ Errors when getting messages from iSeries |
plivingstone
Replies: 2 Views: 2442
|
Forum: General IBM MQ Support Posted: Tue Jun 30, 2015 5:15 am Subject: MQRC_ Errors when getting messages from iSeries |
Seems unlikely that "not authorised" would be intermittent.
However make sure you use supported levels of the MQ client and the MQ server.
V6 of MQ is way out of date.
Enable author ... |
Topic: MQRC_ Errors when getting messages from iSeries |
plivingstone
Replies: 2 Views: 2442
|
Forum: General IBM MQ Support Posted: Tue Jun 30, 2015 2:20 am Subject: MQRC_ Errors when getting messages from iSeries |
We are using the below code to and settings to connect to the IBM WebSphere MQ (version IBM(R) WebSphere(R) MQ V6.0.1) on an iSeries.
We use the same uid and pwd for three different applications a ... |
Topic: Cannot access Websphere MQ on new Windows machine |
plivingstone
Replies: 8 Views: 13119
|
Forum: IBM MQ API Support Posted: Wed Nov 12, 2014 2:07 am Subject: Environment Variabls (DOH!) |
So the solution was annoyingly and gratifyingly simple...
We need to specify the MQSERVER in an environment variable, which I had missed.
So once I set MQSERVER=SYSTEM.DEF.SVRCONN/TCP/BOCTEST it ... |
Topic: Cannot access Websphere MQ on new Windows machine |
plivingstone
Replies: 8 Views: 13119
|
Forum: IBM MQ API Support Posted: Tue Nov 11, 2014 11:26 am Subject: RE: connection |
Hi,
Thanks for your reply. here is the code that tries to access the queue (in c#):
Hashtable connectionProperties = init(connectionType);
MQQueueManager gMQQueueManager = new MQQue ... |
Topic: Cannot access Websphere MQ on new Windows machine |
plivingstone
Replies: 8 Views: 13119
|
Forum: IBM MQ API Support Posted: Tue Nov 11, 2014 9:05 am Subject: Cannot access Websphere MQ on new Windows machine |
Hi,
I am a newbie on Websphere MQ setup and configuration, so I am sorry of this question has already been asked ...
I have an application that has been working fine on a Windows XP box, and a W ... |