MSMQ error : "A workgroup installation computer does not support the operation."

You may get exception saying "A workgroup installation computer does not support the operation.", when you are trying to create or send message to MessageQueue.
In order to resolve the error :
  • Check your installation of the MSMQ if it is installed in the Workgroup Mode? You should select AD integration mode during installation.
  • If you had selected AD integration mode, then check the event logs for MSMQ installation if it had failed during initialization. 
  • Insure that your domain controller is accessible from the machine where MSMQ is installed.
In any of the cases event logs should able to provide you the required details if installation or initialization is failed.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...