在 MSMQ 中通过任意标识符查找?
有没有办法为 MSMQ 中的消息分配标识符,然后通过该标识符找到该消息(如果它仍在队列中)?
更具体地说,它需要是我控制下的唯一标识符,而不是 MSMQ 分配的东西。
Is there a way to assign an identifier to a message in MSMQ, then later locate that message (if it's still in the queue) by that identifier?
Being more specific, it need to be a unique identifier under my control, not something assigned by MSMQ.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用消息标签属性,如果您想要使用在发送消息之前创建的标识符。
消息 LookupID 标识符在消息已发送。
You could use the messages Label property if you want to use an identifier that is created before the message is sent.
The message LookupID identifier is not accessible until the message has been sent.
为什么不使用 CorrelationId?
然后像这样检索消息:
CorrelationId 需要恰好包含 20 个字节,否则分配时将引发异常。
Why not use CorrelationId?
And then retrieve the message like this:
The CorrelationId needs to consist of exactly 20 bytes or else an exception will be thrown upon assignment.