MSMQ 的安全通信

发布于 2025-01-08 02:50:18 字数 162 浏览 0 评论 0原文

我创建了一个私有 MSMQ,并且可以向它发送消息。我现在想做的是只允许单个用户访问队列,然后使用该用户凭据将消息发送到该队列。

我正在考虑在发送消息之前模拟用户(我有一个模拟类),但不确定如何执行此操作。

关于什么是最好的方法的任何想法。

哦!我正在使用 C#。

I have created a Private MSMQ and I am able to send messages to it. What I am now looking to do is to only allow a single user access to the queue and then send messages to that queue using that users credentials.

I am thinking about impersonating the user (I have an impersonator class) before sending the message but not sure how to do this.

any ideas on whats the best way to do this.

Oh! I am using C#.

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

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

发布评论

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

评论(1

萌能量女王 2025-01-15 02:50:18

什么用户将运行可执行文件?您可以简单地授予该用户对队列的访问权限,并完全避免模拟。

当您尝试以几个不同的用户身份运行不同的代码时,模拟通常很有用。如果您不需要多个用户,则根本不必费心模拟。

What user will be running the executable? You can simply give that user access to the queue, and avoid impersonation altogether.

Impersonation is usually useful when you try to run different pieces of code as several different users. If you don't need several users, don't bother with impersonating at all.

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