Posted: Mon May 08, 2006 10:42 am Post subject: Error 2110 when getting a response from a CICS bridge
Novice
Joined: 24 Apr 2006 Posts: 21
I am sending a message to a CICS bridge from a C# program. The CICS program receives the message correctly and then sends a response back to me. When I do a MQGET from my .NET assembly, I get a 2110 error. Here is a snippet of the function that is doing the get. Does anyone have any ideas on what I am doing wrong?
try
{
// Getting the Response
mqQManagerReply = new MQQueueManager(replyQueueManager, ConnectOptions);
mqQueueReply = mqQManagerReply.AccessQueue(replyQueueName,MQC.MQOO_INPUT_SHARED|MQC.MQOO_BROWSE);
MQGetMessageOptions mqGMO = new MQGetMessageOptions();
mqGMO.Version = MQC.MQGMO_VERSION_3;
mqGMO.MatchOptions = MQC.MQMO_MATCH_MSG_ID; //needs to revisit as Message ID is for MQMD only
mqGMO.Options = MQC.MQGMO_WAIT | MQC.MQGMO_NO_SYNCPOINT | MQC.MQGMO_CONVERT;
mqGMO.WaitInterval = Convert.ToInt32(waitInterval); // needs to get from Configuration
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum