Connecting To A Private Remote MSMQ Queue - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T02:41:32Zhttp://stackoverflow.com/feeds/question/376208http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue1Connecting To A Private Remote MSMQ QueueIan2008-12-17T22:05:53Z2009-01-05T09:13:14Z
<p>I'm trying to connect to a remote private MSMQ queue using the path:</p>
<pre><code>"FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"
</code></pre>
<p>and I'm getting the following error: </p>
<pre><code>"The specified format name does not support the requested operation. For example, a direct queue format name cannot be deleted."
</code></pre>
<p>I'm obviously doing something wrong. However this does work using a local queue.</p>
<p>I'm using Spring.Net's <a href="http://www.springframework.net/doc-latest/reference/html/msmq.html" rel="nofollow">Messaging</a>. Here's my config</p>
<pre><code><objects xmlns="http://www.springframework.net">
<object id="myQueue" type="Spring.Messaging.Support.MessageQueueFactoryObject, Spring.Messaging">
<property name="Path" value="FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"/>
</object>
<object id="messageQueueTemplate" type="Spring.Messaging.Core.MessageQueueTemplate, Spring.Messaging">
<property name="DefaultMessageQueueObjectName" value="myQueue"/>
</object>
<object id="messageGateway" type="My.MessageGateway, My.Assembly">
<property name="MessageQueueTemplate" ref="messageQueueTemplate"/>
</object>
</objects>
</code></pre>
http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue/376222#376222-1Answer by Daniel for Connecting To A Private Remote MSMQ QueueDaniel2008-12-17T22:12:37Z2008-12-17T22:12:37Z<p>Is it even possible to connect remotely to a <em>private</em> queue? I thought that's what public queues were for. I could totally be missing something - I've only used private queues locally using WCF - definitely worth looking into WCF if this is a .NET project, as it hides alot of the MSMQ goo.</p>
<p>Here's info on public vs private queues:
<a href="http://msdn.microsoft.com/en-us/library/ms706878" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms706878</a>(VS.85).aspx </p>
http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue/376257#3762572Answer by Igal Serban for Connecting To A Private Remote MSMQ QueueIgal Serban2008-12-17T22:22:28Z2008-12-20T15:42:25Z<p>Is this a transactional queue? Remote read from transactional queue is not possible. Maybe the spring framework try to check if this a transactional queue, and this is also an operation that is supported only on local queue.</p>
<p>The recommanded why to work with queues is to write to remote queue and read from local queue. In msmq 4.0 ( vista and windows 2008 ) remote transactional read is supported ( so I have heard).</p>
<p>Can you debbug the spring.net code and see the exact code when the process fail?</p>
http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue/406938#4069381Answer by Ken for Connecting To A Private Remote MSMQ QueueKen2009-01-02T14:39:16Z2009-01-02T14:39:16Z<p>not true.
<a href="http://infosysblogs.com/microsoft/2007/02/msmq_sending_message_to_remote.html" rel="nofollow">http://infosysblogs.com/microsoft/2007/02/msmq_sending_message_to_remote.html</a></p>
http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue/412620#4126200Answer by Erich Eichinger for Connecting To A Private Remote MSMQ QueueErich Eichinger2009-01-05T09:13:14Z2009-01-05T09:13:14Z<p>the first thing striking my eyes is the casing of your endpoint address. At least all other examples posted in this thread or <a href="http://www.infosysblogs.com/microsoft/2007/05/msmq_receiving_messages_from_r.html" rel="nofollow">here</a> use different casing. Second you are not escaping the backslashes within the string. Instead of</p>
<pre><code>"FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"
</code></pre>
<p>try</p>
<pre><code>"FormatName:Direct=OS:remoteMachineName\\private$\\MyQueue"
</code></pre>
<p>hth,
Erich</p>