I recently installed BugNet and configured it to use AD authentication per the wiki instructions here. I'm running IIS 7.5 on Server 2008 R2. I made sure that I uncommented both module references so that my web.config looks like the following (excluding irrelevant sections for brevity):
In all cases the user is able to login to the site, and in the upper right it shows the user as ad\username, so the AD authentication is working, but the user isn't being populated into the users table, and thus none of the auto assignment of roles are kicking in.
I'm using BugNet version 1.6.313.0, and I've also made sure that no errors are showing up in the system logs.
Any help or insight would be appreciated.
<system.web>
<httpModules>
<add name="AuthenticationModule" type="BugNET.HttpModules.AuthenticationModule, BugNET.HttpModules.Authentication"/>
<add name="LocalizationModule" type="BugNET.HttpModules.LocalizationModule, BugNET.HttpModules.Localization" />
</httpModules>
</system.web>
<system.webServer>
<modules>
<add name="AuthenticationModule" type="BugNET.HttpModules.AuthenticationModule, BugNET.HttpModules.Authentication" />
<add name="LocalizationModule" type="BugNET.HttpModules.LocalizationModule, BugNET.HttpModules.Localization" />
</modules>
</system.webServer>
and authentication mode looks like the following:<authentication mode="Windows" />
I configured the domain/path and credentials for querying our AD forest, set "User Account Source" to "Active Directory", "Anonymous Access" to "Disable" and I've tried "User Registration" with all different values. I also made sure that in IIS under the sites authentication settings that I've disabled all methods except Windows Authentication.In all cases the user is able to login to the site, and in the upper right it shows the user as ad\username, so the AD authentication is working, but the user isn't being populated into the users table, and thus none of the auto assignment of roles are kicking in.
I'm using BugNet version 1.6.313.0, and I've also made sure that no errors are showing up in the system logs.
Any help or insight would be appreciated.