Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create public MSMQ not possible #5175

Open
BrunoBieri opened this issue Jan 6, 2016 · 0 comments
Open

Create public MSMQ not possible #5175

BrunoBieri opened this issue Jan 6, 2016 · 0 comments

Comments

@BrunoBieri
Copy link

It seems that creating a public MSMQ (MessageQueue) with the WixMsmqExtension isn't working as expected.

The following setup creates a public MSMQ but won't set the permission on it.

<util:Group Id="Admins" Name="Administrators"/>
<util:Group Id="Everyone" Name="Everyone"/>

<Directory Id="TARGETDIR" Name="SourceDir">
 <Component Id="Component_MicrosoftMessageQueue"
            Guid="1E6EF371-AA0B-49EC-A18D-E58C6F0EEC75"
            DiskId="1">        
   <msmq:MessageQueue Id="MicrosoftMessageQueueMypublicQueue"
                      Label="MypublicQueue"
                      PathName=".\MypublicQueue"
                      Transactional="yes"
                      PrivLevel="optional" >
     <msmq:MessageQueuePermission Id="MicrosoftMessageQueueAdminPermission"
                                  QueueGenericAll="yes"
                                  Group="Admins"/>
     <msmq:MessageQueuePermission Id="MicrosoftMessageQueueEveryonePermission"
                                  GetQueueProperties="yes"
                                  GetQueuePermissions="yes"
                                  WriteMessage="yes"
                                  Group="Everyone"/>
   </msmq:MessageQueue>
 </Component>

The created public queue ends up with the following message on trying to access the "Security" tab.
image

More information you can find on the question I posted on StackOverflow

@BrunoBieri BrunoBieri changed the title Create public MSMQ Create public MSMQ not possible Jan 6, 2016
@barnson barnson added this to the v3.x milestone Jan 8, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants