I've created a prototype application which uses WCF and MSMQ to send simple "hello world" messages from a client app to a server app. I was able to get it successfully working on my machine.
However, being a client/server technology, I need to get this prototype working across a network.
So, I got a second PC, installed MSMQ on it and my client application. When I run the client app on this second PC, it does not work correctly. I don't get any run-time exceptions, however, the messages are not received on my server. If I go into my client PC's Computer Management console, I can see the messages in its outgoing queue. So, it appears that the problem is that my client app is not connecting to my server app.
Both machines are on the same domain and can see each other in Windows Explorer. I'm able to copy files back and forth from both PCs. If I execute MessageQueue.GetPrivateQueuesByMachine() on my client PC, I can see my server's queues. I should note that my server's queue is private.
I'm using Visual Studio 2008, .NET 3.5. My server machine is running Windows 7. My client PC is running Windows Server 2003 R2. My binding is netMsmqBinding.
Thanks, but I've already read through that article a few times already.
If I attempt to bypass WCF and send the message to MSMQ directly...
Code:
MessageQueue rmQ = new MessageQueue("FormatName:DIRECT=OS:MyComputerName\\private$\\messagingservicequeue");
rmQ.Send("Hello world");
...I get the same behavior as before. The message is stuck in the client PC's outgoing queue.
03-09-2010, 10:00 AM
joewmaki
Sorry all my experience with MSMQ has been passing messages locally or to MSMQ servers setup by third parties. Since the messages are getting posted to your local queue, but not getting picked up by the remote, I would guess something about your receiving queue/server is not configured properly. Not very helpful, I know :(
03-10-2010, 09:56 AM
I-DOTNET
Here's something interesting that I discovered. I decided to switch my client/server PCs so that the host was running on my Win2003 machine and the client was running on my Win7 machine. It worked! I was able to receive messages across the network. So it's something about Windows 7 or my computer that's causing the problem. But what could it be?
03-10-2010, 02:37 PM
joewmaki
You might be better off posting to the MSMQ.Programming Forum. They may be better prepared to solve your problem.