vote up 1 vote down star

I'm trying to connect to a remote private MSMQ queue using the path:

"FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"

and I'm getting the following error:

"The specified format name does not support the requested operation. For example, a direct queue format name cannot be deleted."

I'm obviously doing something wrong. However this does work using a local queue.

I'm using Spring.Net's Messaging. Here's my config

<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>
flag
Are you operating within an Active Directory domain, or are the servers standalone? – Bernhard Hofmann Dec 18 '08 at 17:38

4 Answers

vote up -1 vote down

Is it even possible to connect remotely to a private 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.

Here's info on public vs private queues: http://msdn.microsoft.com/en-us/library/ms706878(VS.85).aspx

link|flag
2  
Private/Public has nothing to do with visibility. Both support ACLs for control access. Private queues are just not advertised through Active Directory, hence they are not "discoverable" unless you already know they are there. – tomasr Dec 19 '08 at 21:11
vote up 2 vote down

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.

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).

Can you debbug the spring.net code and see the exact code when the process fail?

link|flag
vote up 0 vote down

the first thing striking my eyes is the casing of your endpoint address. At least all other examples posted in this thread or here use different casing. Second you are not escaping the backslashes within the string. Instead of

"FormatName:DIRECT=OS:remoteMachineName\Private$\MyQueue"

try

"FormatName:Direct=OS:remoteMachineName\\private$\\MyQueue"

hth, Erich

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.