A WPF application is currently being created that will run in an environment where a user logs on to a Windows PC located in a domain (DC). The application will ask the user to enter their username and password again when it starts, and the username / password will be checked in the Active Directory (I apologize if my terminology is incorrect here).
Entrance is all or nothing; if their password is correct, there is no (current) problem with retrieving groups, rights, or the like.
The development environment is not based on AD and is not in the domain. Are there any options for simulating such a login without going through the process of setting up a domain controller and adding machines to it for development and testing?
During the project, it will be possible to test the deployment (IOW, create an application for logging in, deploy it for the user and make sure that the login works before the final deployment). At the same time, I will need to use some kind of implementation of the kind that works in the test / dev environment.
Any thoughts? Would you recommend not simulating this instead of setting DC?
source share