I have an client server solution. The client is wpf and the server is windows service(.net, connected trough wcf).
I Would like my users to have two ways of signing in. One is username and password. Other in to use Windows Security.
The security content should be sent from client to server and the server should validate the user and the role against the active directory. In the username, password scenario, it Would validate using the database.
But what dó i send from client to server? An implementation of IPrincipal? Or just the username, and then the server looks it up? And how do i configure the users on the server with the roles in my applikation? Can i display the active directory dialog and browse users and groups and Then match Them with my own roles?
Here is what im thinking about doing - update Send username/password to server on a wcf line with transport security. Then have the server validate if the supplied username/password is valid AND have access to use the application. Please note that there is both authentication and authorization in this. Not all users (even though they are valid Windows Users) may have access to the application.
e.g. They are 100 employees and bought only 10 licenses.