Hi, I am evaluating Wix (3.0.211.0) and am having a hell of a time… I get the following error when verbose mode is turned on:

The cabinet 'setup.cab' does not contain any files.  If this installation contains no files, this warning can likely be safely ignored.  Otherwise, please add files to the cabinet or remove it.
 

It seems like some element linking the cab and  files doesn't exist … but I'll be damned if I can figure out what that is.  Any help would be appreciated

 Here is the source to my WXS file:

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Product
      Id="784D2BDE-E528-4D47-976E-EFBB5B68D14A"
      UpgradeCode="BB3E9CFB-6CE9-4900-9BA3-FC5379770744"
      Language="1033"
      Manufacturer="Acme Ltd."
      Name="adsf"
      Version="2.0.0.0" >
   
    <Package
        Keywords="Installer"
        Description="Acmes Foobar 1.0 Installer"
        Comments="Foobar is a registered trademark of Acme Ltd."
        Manufacturer="Acme Ltd."
        InstallerVersion="150"
        Languages="1033"
        Compressed="no"
        SummaryCodepage="1252" />
       
    <Media
        Id="1"
        Cabinet = "setup.cab "
        CompressionLevel = "high"
        EmbedCab = "yes" />
       
    <Property
        Id="DiskPrompt"
        Value="Acmes Foobar 1.0 Installation [1]" />
   
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="ProgramFilesFolder" Name="PFiles">
        <Directory Id="Acme" Name="Acme">
          <Directory Id="INSTALLDIR" Name="Foobar 1.0">
            <Component Id="TestComponent" Guid="024DCE95-BA09-4CA3-ABE1-8F1CFC989A38" DiskId="1">
              <File Id="file1.txt" Name="file1.txt" Source="file1.txt" DiskId='1' />
              <File Id="file2.txt" Name="file2.txt" Source="file2.txt " />
              <File Id="file3.txt" Name="file3.txt" Source="file3.txt" />
              <File Id="file4.txt" Name="file4.txt" Source="file4.txt " />
              <File Id="file5.txt" Name="file5.txt" Source="file5.txt" />
              <File Id="file6.txt" Name="file6.txt" Source="file6.txt " />
              <File Id="file7.txt" Name="file7.txt" Source="file7.txt" />
              <File Id="file8.txt" Name="file8.txt" Source="file8.txt " />
            </Component>
          </Directory>
        </Directory>
      </Directory>
    </Directory>
   
   
    <Feature
        Id="Complete"
        Level="1"
        ConfigurableDirectory="INSTALLDIR">
     
      <ComponentRef
          Id="TestComponent" />
    </Feature>
 
  </Product>
</Wix>

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to