Hi,
I have a 'users' table which stores a list of authorized users (usernames) of my application. All these application users are part of windows AD domain on which my application is hosted. Now when a user tries to log in, I want his username to be checked against the 'users' table. If the username is listed, then his login credentials (i.e. username and password)is to be verified against the AD. But his group and permissions should be as per the settings in my application. In all
- Only those users listed in my users table are authorized users of my application.
- The username-password combination should be verified from AD.
- The groups and permissions of the user should be controlled by the application and not AD.
Please help!!