Connecting To A Private Remote MSMQ Queue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T02:41:32Z http://stackoverflow.com/feeds/question/376208 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue 1 Connecting To A Private Remote MSMQ Queue Ian 2008-12-17T22:05:53Z 2009-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>&lt;objects xmlns="http://www.springframework.net"&gt; &lt;object id="myQueue" type="Spring.Messaging.Support.MessageQueueFactoryObject, Spring.Messaging"&gt; &lt;property name="Path" value="FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"/&gt; &lt;/object&gt; &lt;object id="messageQueueTemplate" type="Spring.Messaging.Core.MessageQueueTemplate, Spring.Messaging"&gt; &lt;property name="DefaultMessageQueueObjectName" value="myQueue"/&gt; &lt;/object&gt; &lt;object id="messageGateway" type="My.MessageGateway, My.Assembly"&gt; &lt;property name="MessageQueueTemplate" ref="messageQueueTemplate"/&gt; &lt;/object&gt; &lt;/objects&gt; </code></pre> http://stackoverflow.com/questions/376208/connecting-to-a-private-remote-msmq-queue/376222#376222 -1 Answer by Daniel for Connecting To A Private Remote MSMQ Queue Daniel 2008-12-17T22:12:37Z 2008-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#376257 2 Answer by Igal Serban for Connecting To A Private Remote MSMQ Queue Igal Serban 2008-12-17T22:22:28Z 2008-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#406938 1 Answer by Ken for Connecting To A Private Remote MSMQ Queue Ken 2009-01-02T14:39:16Z 2009-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#412620 0 Answer by Erich Eichinger for Connecting To A Private Remote MSMQ Queue Erich Eichinger 2009-01-05T09:13:14Z 2009-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>