Msmq和WCF服务

时间:2010-01-28 13:41:36

标签: windows-services msmq wcf

我使用NetMsmq绑定创建了一个WCF服务,我在我的机器上创建了一个私有队列并执行了该项目。这样工作正常,我的WCF服务启动并使用调试环境中的队列访问消息。现在,我想使用Windows服务托管服务,同样我也创建了一个新项目和Windows安装程序(此服务在本地系统帐户下运行)。然后我尝试通过命令提示符使用InstallUtil命令安装此Windows服务。当安装正在进行并且在服务主机打开期间,我得到一个例外:

There was an error opening the queue. Ensure that MSMQ is installed and running, the queue exists and has proper authorization to be read from. The inner exception may contain additional information. 
Inner Exception System.ServiceModel.MsmqException: An error occurred while opening the queue:Access is denied. (-1072824283, 0xc00e0025). 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.
   at System.ServiceModel.Channels.MsmqQueue.OpenQueue()
   at System.ServiceModel.Channels.MsmqQueue.GetHandle()
   at System.ServiceModel.Channels.MsmqQueue.SupportsAccessMode(String formatName, Int32 accessType, MsmqException& msmqException)

有人可以为上述问题提出可能的解决方案吗?我是否遗漏了为队列和Windows服务设置的任何权限,如果是这样,你能否建议在哪里添加这些权限?

4 个答案:

答案 0 :(得分:7)

汤姆·霍兰德(Tom Hollander)有一篇关于使用WCF的MSMQ的三部分博客系列 - 非常值得一试!

也许你会在某处找到解决问题的方法!

答案 1 :(得分:4)

是的,它看起来像是权限问题。

右键单击服务器管理器中的专用队列,然后选择“属性”。继续进入“安全”选项卡,确保您的本地系统帐户具有正确的权限。

在Nicholas Allen的文章Diagnosing Common Queue Errors中也证实了这一点,其中作者将错误代码0xC00E0025定义为权限问题。

答案 2 :(得分:2)

我遇到了同样的问题,这是解决方案。

右键点击“我的电脑” - >管理。在“计算机管理”窗口中,转到“服务和应用程序 - >消息队列 - >您的队列”,选择您的队列和访问属性。添加运行您的WCF应用程序的用户并授予完全访问权限。这应该可以解决问题。

答案 3 :(得分:0)

很简单,服务无法找到它的队列。 队列名称必须与端点地址完全匹配。

示例:

  

net.msmq://localhost/private/wf.listener_srv/service.svc

指向本地队列

  

私人$ \ wf.listener_srv \ service.svc

如果队列名称和端点彼此相互依赖,则最像是IIS pool上定义的凭据不授予对队列的访问权。