WCF 错误 0xc00e0069 (MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE)

发布于 2024-12-09 08:42:28 字数 607 浏览 0 评论 0原文

我有一个 WPF 应用程序,它使用 WCF(双工 netMsmqBinding)与我们域中的自托管服务应用程序进行通信。 我现在正尝试将这个 WPF 应用程序移动到外面的广阔世界,通过互联网与 WCF 服务对话(好吧,让它们相互对话)。

我已经安装了 MSMQ 并在两者上创建了服务,并检查了队列和防火墙权限。根据我发现的阅读内容,我需要做的是:

1) 启用 MSMQ 的 HTTP 插件。

2)指定绑定的useActiveDirectory = false和queueTransferProtocol =“Srmp”以确保它使用DIRECT来查找专用队列。

但是我这样做了,WPF 应用程序收到错误

打开队列时发生错误:无法识别的错误 -1072824215 (0xc00e0069)。无法从队列发送或接收消息。确保 MSMQ 已安装并正在运行。还要确保 队列可以使用所需的访问模式打开,并且 授权。

这将转换为 MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE。

我可以正常浏览到远程服务器,其余服务工作正常,所以我一定是缺少 HTTP 的某些内容或者它是自托管的事实。有什么想法吗?

I have a WPF app that uses WCF (duplex netMsmqBinding) to talk to a self-hosted service app in our domain.
I'm now trying to move this WPF app to the big wide world out there, to talk to the WCF service over the internet (well, make them talk to each other).

I've installed MSMQ and created the services on both, and checked queue and firewall permissions. Based on the reading I've found, what I needed to do then is:

1) Enable MSMQ's HTTP addon.

2) specify the binding's useActiveDirectory=false and queueTransferProtocol="Srmp" to ensure that it uses DIRECT to find the private queue.

However I did that and the WPF app receives the error

An error occurred while opening the queue:Unrecognized error
-1072824215 (0xc00e0069). The message cannot be sent or received from the queue. Ensure that MSMQ is installed and running. Also ensure that
the queue is available to open with the required access mode and
authorization.

Which translates to MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE.

I can browse to the remote server ok, and the rest services work fine, so I must be missing something with HTTP or the fact that it's self hosting. Any ideas?

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

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

发布评论

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

评论(1

岁吢 2024-12-16 08:42:28

MSMQ over HTTP 是一种推送技术(客户端 -> Web 服务器)。
您无法打开远程队列并从中提取消息。

MSMQ over HTTP is a push technology (client -> web server).
You cannot open a remote queue and pull messages from it.

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