We have two node clusters running Windows 2008 R2. I installed MSMQ with integration options for the message server and directory services on both nodes. I created an MSMQ cluster resource called TESTV0Msmq (we use transactional queues, so the DTC resource was created earlier).
The virtual resource decides correctly when I ping it.
I created a small console executable in C # using the MessageQueue constructor so that we can send basic messages (to both transactional and non-transactional queues).
The following paths work from the active node :
. \ Private $ \ clustertest
{computer_name} \ private $ \ clustertest
but TESTV0Msmq \ private $ \ clustertest returns "Invalid queue path name".
According to this article: http://technet.microsoft.com/en-us/library/cc776600(WS.10).aspx
Should I be able to do this?
In particular, queues can be created on a virtual server and messages can be sent to them. Such queues are addressed using the VirtualServerName \ QueueName syntax.
cluster-computing msmq
6footunder
source share