Hello,

I am trying to build a setup using WiX 3.5 build (migrating from WiX 3.0).

This setup includes a melt generated wxs file (from a MSM).

I have a problem due to the fact that the MSM intends to grant access rights on 
a particular folder it creates.
Due to this, in the generated wxs I have content similar to:
        <CustomTable Id="SecureObjects">
            <Column Id="SecureObject" PrimaryKey="yes" Type="string" Width="72" 
Category="Identifier" Description="Primary key, non-localized token in Table" 
Modularize="Column" />
            <Column Id="Table" PrimaryKey="yes" Type="string" Width="32" 
Category="Text" Description="Table SecureObject should be securing" />
            <Column Id="Domain" PrimaryKey="yes" Type="string" Width="255" 
Nullable="yes" Category="Text" Description="Domain half of user account to 
secure" />
            <Column Id="User" PrimaryKey="yes" Type="string" Width="255" 
Category="Text" Description="Username half of user account to secure" />
            <Column Id="Permission" Type="int" Width="4" Nullable="yes" 
MinValue="-2147483647" MaxValue="2147483647" Description="Permissions to grant 
to User" />
            <Row>
                <Data Column="SecureObject">INSTALLLOCATION</Data>
                <Data Column="Table">CreateFolder</Data>
                <Data Column="Domain" />
                <Data Column="User">Everyone</Data>
                <Data Column="Permission">268435456</Data>
            </Row> 
        </CustomTable>


The setup will also grant access rights on a different folder (using 
Util:PermissionEx).
When I build the setup, I get this error:


C:\Users\zzz\AppData\Local\Temp\rfapltdr\SecureObjects.idt : error LGHT0136: 
There was an error importing table 'SecureObjects' from file 
'C:\Users\zzz\AppData\Local\Temp\rfapltdr\SecureObjects.idt'


Any hints on what is wrong ? I failed to find a reason for this error.

Thanks,
Adrian
------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to