My company develops and sells a SaaS application that has hundreds of customers. Some of our customers have asked us to support LDAP integration for authenticating user acco
Perhaps consider Authentication Vs Authorisation
Authentication - which user is this? Authorisation - who should be able to use the application, specified users, groups?
Currently you are implying authorisation through authentication because only those who are registered to your app are allowed to use it.
If you use a directory instead of your custom datastore then
If your users really want generic LDAP, then you want to look into (C)ldap_connect, ldap_bind_s (C#) LDAPConnection System.DirectoryServices.Protocols
Or again back to AD this Demystified .Net App single sign on might help