Aug 9, 2011
tom

What is the difference between an independent client and a dependent client in terms of MSMQ

Question

I have a client that has a server (server A) that has a .net app that is trying to write to a MSMQ on another server (server B). They are getting the error “MSMQ independent clients cannot serve MSMQ dependent clients”.

What is the difference between the two, and is there an easy way to make server A independent?

Thanks

Answer

Dependent clients are (were) clients that didn’t have a local MSMQ queue manager but instead used RPC to access a queue manager on another machine. Bit like a terminal services client where you see what’s going on but the work is done elsewhere.

If you go to the MSMQ properties in Computer Management on the server, there is a “Server Security” tab; make sure the “Disable Dependent Clients …..” option is unchecked.

What exact line of code generates the error message?

Cheers
John

Related posts:

  1. MSMQ communication between different servers
  2. What is the difference between Features in Server level and site level in IIS7.5
  3. What is the difference between 3-digit and dotted SMTP error codes?
  4. How can two Lync client talk when there is no route between them?
  5. What’s the difference between include and require in puppet

Leave a comment