Curious if you have an update on this or what you figured out? I've looked a little at the 15 seconds article, but don't see that much relevance (also seems a little out of date)
I'm trying to do essentially 'pass-through' authentication. The only thing I want AD to do is authenticate the user. Their info. in the TIme Trakcer DB should be used otherwise. Currently, I can see on the AD machine with the DC, that there are 'successes' on the logins, but on the app. machine, I am still getting authorization failures. 'URL authorization failed for the request' is the error message when looking in the event viewer >> application
I have:
<connectionStrings>
<remove name="LocalSqlServer" />
<add name="LocalSqlServer" connectionString="server=SQL;uid=IDHERE;pwd=#########,database=DBNAME" />
<add name="aspnet_staterKits_TimeTracker" connectionString="server=SQL;uid=IDHERE;pwd=########;database=DBNAME" />
<add name="ADConnectionString" connectionString="LDAP://DCMACHINE/CN=Users,DC=path,DC=to,DC=dc" />
</connectionStrings>
... and ...
<system.web>
....
<authentication mode="Windows" />
<authorization>
<deny users="?"/>
</authorization>
...
</system.web>
I'll admit that I don't have my head fully wrapped around membership providers yet ... could that be my problem?