msmq net connect

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How does one make a private queue on the device detectable on the local
network?

I have msmq installed on WM5 PDA and everything looks OK except that the
status shows DISCONNECTED. Ping to the device works OK. Msmqadm command
"net connect" does not seem to have any effect. There are no firewalls
involved. I am using the binaries from the WM 2003 SDK.

Thanks in advance
 
First, it's a good idea to use WM 5.0 binaries:

http://www.microsoft.com/downloads/...b2-fa13-4062-b8d1-4406ccddb5fd&DisplayLang=en

Next, don't mind this status; it will connect as soon as it needs to send a
message.
If you've enabled binary protocol, it would also receive messages just fine.

If you're using System.Messaging to send message between PC and device, make
sure you're specifying format name with "FormatName:" prefix. For example:

messageQueue.Path = @"FormatName:DIRECT=OS:device_or_pc\private$\myQueue";

Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top