Why doesn't this work? Things have changed since 2.0....I based my syntax on the online tutorial.

<See attached .wxs file>

Thanks,
--
-Brad
<?xml version="1.0" ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Product Id="A2AA10CB-17AF-446f-BDB4-A7C703DC60F7" UpgradeCode="2A9A7AE1-DC9E-4d6b-896B-93E2C6172DC8" Name="SaveShipment Web Service" Language="1033" Version="1.0.0.0" Manufacturer="Atlas Van Lines">
    <?define SourcePath = "C:\Projects\Atlas.Validation\Build_RELEASE_Assembly\" ?>
    <!--Installs Shipment Web Service-->

    <Package Keywords="Installer"
      Description="Shipment Web Service Installer"
      Comments="Installs Shipment Web Service for asynchronous saving of order data." Manufacturer="Atlas Van Lines"
      InstallerVersion="200" Languages="1033" Compressed="yes" />
    <Condition Message="You need to be an administrator to install this product.">
      Privileged
    </Condition>
    <Condition Message='This setup requires the .NET Framework 1.1 or higher.'>
      <![CDATA[MsiNetAssemblySupport >= "1.1.4322"]]>
    </Condition>
    <Media Id="1" Cabinet="ShipmentWSMSI.cab" EmbedCab="yes" />
    <Icon Id="I_AtlasIcon" SourceFile="$(var.SourcePath)awg.ico"/>

    <!--Gotta have at least one file, or you'll get an ICE18 error-->
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="IISMain" Name="Inetpub">
        <Directory Id="WWWMain" Name="wwwroot">
          <Directory Id="InstallDir" Name="ShipmentSaveWS">
            <Component Id="C_global.asax" Guid="B7EEC8C8-F7BB-471f-83E4-0DD23683C8BD">
              <File Id="F_global.asax" Name="global.asax" KeyPath="yes" Vital="yes" DiskId="1" Source="$(var.SourcePath)" />                    
            </Component>
            <Component Id="C_content.other" Guid="3B457165-6798-4010-9131-DF35AC72726F">
              <File Id="F_savefailedemailbody.txt" Name="SaveFailedEmailBody.txt" Vital="yes" Source="$(var.SourcePath)" />
            </Component>
            <Component Id="C_content.aspx" Guid="6004313A-4056-4e08-A6BB-1E03F06418DC">
              <File Id="F_shipmentfacade.asmx" Name="ShipmentFacade.asmx" KeyPath="yes" Vital="yes" DiskId="1" Source="$(var.SourcePath)" />
              <File Id="F_unlockshipment.aspx" Name="UnlockShipment.aspx" Vital="yes" DiskId="1" Source="$(var.SourcePath)" />              
            </Component>
            <Component Id="C_configuration" Guid="294B778F-29A9-4440-868E-350B95DDBDEF">
              <File Id="F_web.config" Name="web.config" Vital="yes" Source="$(var.SourcePath)" />
            </Component>
            <Directory Id="ShipmentSaveBIN" Name="bin">
              <Component Id="C_mailassembly" Guid="{F29EFC54-5811-4ed8-B34C-3102CEB0B514}">
                <File Id="F_awgmail.dll" Name="awgmail.dll"  KeyPath="yes" Vital="yes" Source="$(var.SourcePath)" />                
              </Component>
              <Component Id="C_shipmentwsassembly" Guid="{67592F48-66DB-497d-B4F1-CEC1A1839446}">
                <File Id="F_shipmentws.dll" Name="ShipmentWS.dll"  KeyPath="yes" Vital="yes" Source="$(var.SourcePath)" />
              </Component>
              <Merge Id="AtlasValidationAssemblies" Language="1033" SourceFile="ValAssembliesMM.msm"
              DiskId="1" />
            </Directory>
        </Directory>
        </Directory>    
      </Directory>

      <Component Id="C_shipmentsavewsdir" Guid="493E3487-AA4C-4476-8CC0-4B1C763AF6F7">
        <WebVirtualDir Id="ShipmentSaveWSDir" Alias="ShipmentSaveWS" Directory="InstallDir" WebSite="DefaultWebSite">
          <WebApplication Id="ShipmentSaveWS" Name="ShipmentSaveWS" />
        </WebVirtualDir>
      </Component>

    </Directory>

    <Feature Id="SaveShipmentWSContent" Title="SaveShipment WS Web Content" Level="1">
      <ComponentRef Id="C_global.asax" />
      <ComponentRef Id="C_content.other" />
      <ComponentRef Id="C_content.aspx" />
      <ComponentRef Id="C_configuration" />
      <ComponentRef Id="C_mailassembly" />
      <ComponentRef Id="C_shipmentwsassembly" />
      <ComponentRef Id="C_shipmentsavewsdir" />
    </Feature>

    <WebSite Id="DefaultWebSite" Description="Default Web Site">
      <WebAddress Id="AllUnassigned" Port="80" />
    </WebSite>
    
    <Property Id="VSDSupportedRuntimes" Value="1.1.4322" />
    <Property Id="ARPCONTACT" Value="Atlas Van Lines" />
    <Property Id="ARPPRODUCTICON" Value="I_AtlasIcon" />
    <Property Id="ALLUSERS" Value="1" />

  </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