【发布时间】:2011-09-23 14:35:56
【问题描述】:
目前我正在工作或使用 msmq 私有队列,我需要将其更改为公共队列。 我发现,我只需要更改端点地址
address="net.msmq://132.186.201.193/private/IEventQueue"
到
address="net.msmq://132.186.201.193/public/IEventQueue"
但是,这不起作用,我正面临异常
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. ---> System.ServiceModel.MsmqException: An error occurred while opening the queue:The queue does not exist or you do not have sufficient permissions to perform the operation. (-1072824317, 0xc00e0003). 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.
我在这里缺少什么,在配置中?
问候, 阿尼
【问题讨论】:
标签: .net queue msmq private public