无法在远程服务器上创建私有消息队列
我无法在远程服务器上创建队列,我得到的错误是:
Cannot create a queue with the path FormatName:DIRECT=OS:server\private$\q
代码如下:
Dim q As MessageQueue
q = MessageQueue.Create("FormatName:Direct=OS:Server\private$\queue")
我已尝试使用操作系统、TCP、HTTP 以及给定的所有可能选项 此处 但我无法在远程计算机上创建队列。我在我的开发盒上运行 Win 7 Enterprise,在 MSMQ 服务器上运行 Win Server 2003 R2。
我是否缺少服务器上的某些安全/权限设置或其他配置?将不胜感激任何可能的帮助。
I am unable to create a queue on a remote server and the error i get is :
Cannot create a queue with the path FormatName:DIRECT=OS:server\private$\q
the code is as below:
Dim q As MessageQueue
q = MessageQueue.Create("FormatName:Direct=OS:Server\private$\queue")
I have tried with OS, TCP, HTTP and all the possible options given here but I have not been able to create a queue on remote machine. I am running Win 7 Enterprise on my dev box and Win Server 2003 R2 on the MSMQ server.
Am i missing some security / permission settings on the server or some other configuration ? would appreciate any help possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法创建远程专用队列。
您将需要在远程计算机上手动创建它们,或者在那里运行一个进程来执行您需要的操作。
You cannot create remote private queues.
You will need to manually create them at the remote machine or run a process there that does what you need.
您无法创建远程队列。请参阅 MessageQueue.Create 方法文档。
You cannot create remote queues. Look at MessageQueue.Create Method documenatation.