MSMQ and user rights

  • Thread starter Thread starter Kimmo Laine
  • Start date Start date
K

Kimmo Laine

Hi,

when creating a new MessageQueue (in C#), can i tell that users from
specific Group can use it freely:

thx

Kimmo Laine
 
Hi Kimmo:

Have you looked at the SetPermissions method?

mq.SetPermissions("groupname", MessageQueueAccessRights.FullControl);
 
Back
Top