我对SSIS很陌生。我试图向远程私有 MSMQ队列发送MSMQ文本消息。
我有以下问题
1. I tried using `XYZ\private$\remoteprivatequeue` where _XYZ_ is the machine name for the remote server and "_remoteprivatequeue_" is the name of the queue.
计算机管理->服务和应用程序->消息队列 -> (右击)属性 ->安全选项卡
错误:
无法获得安全描述符。 错误:安装在工作组模式下的消息队列不支持此操作。
我尝试将消息发送到本地机器上的一个私有队列,在该机器上,单击上面描述的属性选项卡时会收到相同的错误,但是发布消息works!
我尝试使用这里提到的任务:http://technet.microsoft.com/en-us/library/ms403349.aspx,但得到了连接错误。
编辑:
使用格式XYZ\private$\remoteprivatequeue测试连接时会出现以下错误
Program Location:
at System.Messaging.MessageQueue.ResolveFormatNameFromQueuePath(String queuePath, Boolean throwException)
at System.Messaging.MessageQueue.Exists(String path)
at Microsoft.DataTransformationServices.Design.MsmqConnectionManagerForm.buttonTest_Click(Object sender, EventArgs e)发布于 2012-07-26 21:31:26
在与这些队列交谈时,需要包括格式名称:
FormatName:DIRECT=TCP: IPAddress\QueueName
FormatName:DIRECT=OS: MachineName\QueueNamehttps://stackoverflow.com/questions/11676065
复制相似问题