We are running a Saas ASP.NET 3.5 web application using authentication on an open IIS 7.5 server with secure content for thousands of users. We also have some subqueries that run ASP.NET MVC 2.
User names and passwords are stored in our database, and each user has attached roles and groups with rights and access rights.
Now we were also asked to facilitate simple SSO login through Active Directory so that users do not have to enter a username and passwords twice to log in. These users will be created from different networks and domains.
No user "synchronization" should be performed from our servers on LDAP. We are not sure that any connection with LDAP is necessary, since all users will be created in our system and supported there. Form authentication will be used for most of our users.
From now on, we are not sure which is the best choice. As for our scenario, what would be the “best way”?
source
share