vote up 0 vote down star

Is it possible to delete a private message queue that was created by the service user? During uninstallation, we would like to clean up any message queues created by our application. For security purposes, access to these queues has been restricted to the current user (ServiceUser). During uninstall, we have admin privileges, but still get an access denied MessageQueueException when we attempt to delete the queue or modify the privs on the queue.

Here is the cleanup code:

    public void DeleteAppQueues()
    {
        List<string> trash = new List<string>();

        var machineQueues = MessageQueue.GetPrivateQueuesByMachine(".");
        foreach (var q in machineQueues)
        {
            if (IsAppQueue(q.QueueName))
            {
                trash.Add(".\\" + q.QueueName);
            }
            q.Dispose();
        }

        foreach (var queueName in trash)
        {
            try
            {
                using (MessageQueue delQueue = new MessageQueue(queueName))
                {
                    delQueue.SetPermissions("Everyone", MessageQueueAccessRights.FullControl, AccessControlEntryType.Allow);
                }
                MessageQueue.Delete(queueName);
            }
            catch (MessageQueueException ex)
            {
                // ex.Message is "Access to Message Queuing system is denied."
            }                
        }
    }
flag

3 Answers

vote up 0 vote down

Being administrator is not enough. You have to have the "Delete" permission. And before that you have to have the "Set Permission" right( or be the queue owner) to set the permissions.

Is the exception thrown on the "SetPermissions" call or on the "Delete" call?

link|flag
Both the delete call and the SetPermissions calls throw. – Todd Kobus Sep 15 at 3:17
vote up -1 vote down

IS THERE A WAY TO DO THIS BY USING FRAMEWORK 1.1 ?

link|flag
vote up 0 vote down

I have the same issue. I suppose creating the queues by the service user is not a good idea. Should be done by an installation program or setup program.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.