MSMQ 读取错误(访问被拒绝)

发布于 2024-12-12 12:48:08 字数 305 浏览 0 评论 0原文

我在本地计算机上的其他进程中创建了一个队列,如下所示:

MessageQueue.Create(@".\private$\sampleQueue");

在我的读取器进程中,我按如下方式附加到它:

var queue = new MessageQueue(@".\private$\sampleQueue");

当我尝试执行 queue.Peek() 时,我获得了访问权限拒绝例外。我不在域中,这只是我的本地工作组计算机。有什么想法吗?

I create a queue on my local machine in some other process as follows:

MessageQueue.Create(@".\private$\sampleQueue");

And in my reader process, I attach to it as follows:

var queue = new MessageQueue(@".\private$\sampleQueue");

When I try to do queue.Peek(), I get an access denied exception. I'm not on a domain, this is just my local workgroup computer. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

亣腦蒛氧 2024-12-19 12:48:08

MSMQ 使用不同的协议来工作:

  • 推送信息(发送消息)使用 MSMQ 协议。
  • 使用RPC协议拉取信息(接收消息、获取属性等)。

如果这不是一个简单的权限问题(很可能是),那么您需要这篇博文:

了解 MSMQ 安全性如何阻止 RPC 流量
http://blogs.msdn.com/b/johnbreakwell/archive/2010/03/24/understanding-how-msmq-security-blocks-rpc-traffic.aspx

干杯
约翰

MSMQ uses different protocols for it's work:

  • Pushing information (sending messages) uses MSMQ protocol.
  • Pulling information (receiving messages, getting properties, etc) using RPC protocol.

If it is not a simple permissions issue (which it is very likely to be) then you need this blog post:

Understanding how MSMQ security blocks RPC traffic
http://blogs.msdn.com/b/johnbreakwell/archive/2010/03/24/understanding-how-msmq-security-blocks-rpc-traffic.aspx

Cheers
John

葬シ愛 2024-12-19 12:48:08

如果您在“计算机管理”中右键单击队列并选择“属性”,您是否在“安全”选项卡上设置了适当的权限?

If you r-click on the queue in Computer Management and select properties, do you have the appropriate permissions set on the Security tab?

风吹过旳痕迹 2024-12-19 12:48:08

创建队列的进程使用的凭据必须与读取队列的进程使用的凭据不同。如果情况必须如此,那么您需要在创建队列后专门授予该队列所需的读取权限。

The credentials used by the process that creates the queue must be different from the credentials of the process used to read the queue. If that is the way it must be, then you will need to specifically grant the needed read permissions on the queue after you create it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文