Tuesday, December 05, 2006

Windows Authentication in ITSM SelfService and ServiceManagementWeb

I couldn't find this change anywhere on the net so here it is...

There is a setting in the web.config file to setup Windows Authentication.

Change this Section

<authentication mode="Forms">
<forms name=".FUSIONAUTH" loginUrl="Login.aspx" timeout="2400" />
</authentication>

To

<authentication mode="Windows">
<forms name=".FUSIONAUTH" loginUrl=" Login.aspx" timeout="2400" />
</authentication>