<?xml version="1.0" encoding="UTF-8"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    \Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
    <appSettings>
        <add key="AuthenticationContext" value="feedlogin"/>
    </appSettings>

    <system.web>
	<!--
	    The <authentication> section enables configuration
	    of the security authentication mode used by
	    ASP.NET to identify an incoming user.
	-->
	      <authentication mode="Windows">
        </authentication>
	      <identity impersonate="false" />
        <machineKey decryptionKey="AutoGenerate" validationKey="AutoGenerate" />
        
    </system.web>
    <system.webServer>
        <httpRedirect enabled="false" />
        <handlers>
          <add name="RDWAWebFeedLoginHandler" path="WebFeedLogin.aspx" verb="*" type="Microsoft.TerminalServices.Publishing.Portal.FormAuthentication.WebFeedLoginHandler" preCondition="integratedMode" />
        </handlers>
    </system.webServer>
</configuration>
