What's the problem?

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pierson Lee 
(Volt)
Sent: Friday, June 15, 2007 4:55 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Adding items to IIS: What am I doing wrong?

My eventual goal is to be able to create a website through WiX, but currently 
this is supposed to add two new Application Pools in IIS and it isn't even 
doing that. What am I doing wrong? Any help would be great. Thanks
--Pierson

<code>

<?xml version="1.0" encoding="utf-8"?>


<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"; 
xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension";>
      <Product Id="DBAB017C-1C26-4294-9ECC-E069B2BD3501" Name="AppPool Creator" 
Language="1033" Version="0.1.0.0" Manufacturer="Microsoft Corporation" 
UpgradeCode="B63F9B80-B0B4-4955-B5D2-3B9D50B1DF54">
            <Package Description="AppPool Creator" Comments="6/15/2007 Pierson" 
Manufacturer="Microsoft Corporation" InstallerVersion="100" Compressed="yes" />
            <UI />
            <Directory Id="TARGETDIR" Name="SourceDir">

                        <Component Guid="62CE44C2-0935-4139-9DB3-638A9B567835" 
Id="AppPoolComponent">
                              <iis:WebAppPool Id="AppPool1" Name=" AppPool_1" 
xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"; />
                              <iis:WebAppPool Id="AppPool2" Name="AppPool_2" 
xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension"; />
                        </Component>

            </Directory>
            <Feature Id="ApplicationPool" Level="1">
                  <ComponentRef Id="AppPoolComponent" />
            </Feature>
      </Product>
</Wix>



</code>
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to