I am converting a install project from an older Windows Installer to WiX.
 This project sets up a website and associated application pool with the
following parameters (used in conjunction with the
System.Configuration.Install.Installer class):

    <appPools>
      <appPool name="HRActionsAppPool"> <!-- IIsApplicationPoolsSetting -->
        <propertyList>
          <property name="IdleTimeOut" value="60"/>
          <property name="AppPoolQueueLength" value="2000"/>
          <property name="MaxProcesses" value="1"/>
          <property name="PingingEnabled" value="True"/>
          <property name="PingInterval" value="30"/>
          <property name="StartupTimeLimit" value="90"/>
          <property name="ShutdownTimeLimit" value="90"/>
        </propertyList>
      </appPool>
    </appPools>

      <siteSettings> <!-- IIsWebServerSetting -->
        <propertyList>
          <property name="AllowKeepAlive" value="True"/>
          <property name="ConnectionTimeout" value="120"/>
          <property name="AppPoolId" value="HRActionsAppPool"/>
        </propertyList>
        <serverBinding Hostname="" IP="*" Port="80"/>
      </siteSettings>

      <rootSettings> <!-- IIsWebVirtualDirSetting /ROOT - but inherited
downward (can be overwritten at lower levels) -->
        <propertyList>
          <property name="AccessRead" value="True"/>
          <property name="AccessScript" value="True"/>
          <property name="AspAllowSessionState" value="True"/>
          <property name="AspScriptTimeOut" value="300"/>
          <property name="AspBufferingOn" value="True"/>
          <property name="EnableDefaultDoc" value="True"/>
          <property name="DefaultDoc"
value="Default.htm,index.htm,index.html,default.aspx"/>
          <property name="AuthPassport" value="False"/>
          <property name="AuthAnonymous" value="True"/>
          <property name="AnonymousPasswordSync" value="True"/>
          <property name="AppPoolId" value="HRActionsAppPool"/>
        </propertyList>
      </rootSettings>

I have been able to set a coupleof the above parameters (IdleTimeOut &
MaxProcess) but am not finding entries for any of the other properties
within the Wix/IIsExtension package.  Is there a way to set these
properties in WiX or do I need to do it some other way.  If there is
another way can you provide some example?

Brian

If you can't explain it simply, you don't understand it well enough.  -
Albert Einstein
------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to