0

即使该消息不是队列中的第一个消息,我是否可以通过其 CorrelationId 过滤并从队列中获取消息?

4

1 回答 1

1

是的。您必须MQGMO_MATCH_CORREL_IDMQGetMessageOptions.

   MQMessage getMsg = new MQMessage();

   MQGetMessageOptions gmo = new MQGetMessageOptions();
   gmo.MatchOptions = MQC.MQMO_MATCH_CORREL_ID;

   // Copy correlationID of the message you want to receive       
   getMsg.CorrelationId = correlationId;

   queue.Get(getMsg, gmo);

编辑:

CorrelationId 用于关联两条消息,通常是请求和回复消息。所以它是这样做的。

1) 客户端应用程序发送请求消息。发送消息后缓存发送消息的messageId。

2)将此messageId用作消息选择的correlationId。

 recvdResponseMsg.CorrelationId = requestMsg.MessageId;
 gmo.MatchOptions = MQC.MQMO_MATCH_CORREL_ID;

3)在服务器应用程序(处理请求消息)中,发送响应消息时,只需将请求消息的messageId复制到响应消息的correlationId即可。

 responseMsg.CorrelationId = requestMsg.MessageId;
于 2012-08-16T04:39:35.447 回答