Thanks!
Did you have any trouble uninstalling or installing when a queue exists?
 
Jarrod
 

________________________________

From: [EMAIL PROTECTED] on behalf of Dominik Guder
Sent: Fri 9/7/2007 4:25 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] WiX v3 MSMQ and Votive





Jarrod Marshall wrote: 
> 
> Hello all, 
> 
> Does anyone have an example of using the updated MSMQ extensions in Votive 
> v3? Right now, the trouble I'm having is that the schema seems invisible. 
> Do I need to copy over some more schema files to the WiX MSI install path? 
> 

Hi, 

yes, there are some files to copy (from binaries.zip): 
copy wix3-binaries\doc\*.xsd to <Program Files>\Microsoft Visual Studio 
8\Xml\Schemas 
copy wix3-binaries\*Extension.dll to  <Program Files>\Windows Installer XML 
v3\bin 
(at least the msmq related) 

Example: 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"; 
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"; 
xmlns:msmq="http://schemas.microsoft.com/wix/MsmqExtension"; > 
.... 
<Component ... > 
    <util:User Id="GroupUsers" Domain="[LOGONDOMAIN]" Name="Users" 
CreateUser="no" FailIfExists="no" RemoveOnUninstall="no" /> 
        <msmq:MessageQueue PathName=".\Private$\wixtest" Label="My Test 
Queue" Id="MyTestQueue" > 
            <msmq:MessageQueuePermission User="GroupUsers" 
Id="MyTestQueuePerm" PeekMessage="yes" ReceiveMessage="yes" 
WriteMessage="yes" /> 
        </msmq:MessageQueue > 
</Component> 

Hint: I couldn't get util:Groups working. Instead I had to use util:User I'm 
not sure if this is correct or if I used util:Group incorrect. 

hth 

Dominik 
-- 
View this message in context: 
http://www.nabble.com/WiX-v3-MSMQ-and-Votive-tf4395733.html#a12551134 
Sent from the wix-users mailing list archive at Nabble.com. 


------------------------------------------------------------------------- 
This SF.net email is sponsored by: Splunk Inc. 
Still grepping through log files to find problems?  Stop. 
Now Search log events and configuration files using AJAX and a browser. 
Download your FREE copy of Splunk now >>  http://get.splunk.com/ 
_______________________________________________ 
WiX-users mailing list 
WiX-users@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wix-users 


**************************************************************************** 
            Checked by MailWasher server (www.Firetrust.com) 
                WARNING. No FirstAlert account found. 
             To reduce spam further activate FirstAlert. 
    This message can be removed by purchasing a FirstAlert Account. 
**************************************************************************** 


No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.476 / Virus Database: 269.13.5/989 - Release Date: 9/4/2007 5:54 PM
  

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to