-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to integrate Identity Server with Active Directory #2636
Comments
my solution is add WsFederation privider , then i can login in adfs login page,and then redirect to my own web application with authentication info.
|
@jortygu I can't use ADFS, I want to use LDAP. |
@mehdihadeli have you searched for this on web? You know because we are using standard AspNet Core Identity library and IDS4 for the authentication system. Maybe you can configure it in your solution. If not, we try to help. |
I think @mehdihadeli wants to use LDAP userstore for authenticating the users for IdentityServer4 which will cause some problems (if @hikalkan can confirm) since users won't be stored in IdentityServer4 entities but somewhere else. You can create a new An other option is saving all the AD users to AbpIdentityServer users (which will be done once). And if AD is the primary store which the business runs in, you can write a background worker to sync AD users and IdentityServer users. |
I should check this (added to milestone 2.2). If needed, we can add extension points to the Identity and Account modules (like we did for AspNet Boilerplate before). |
BTW, how this is done if we would use a standard AspNet Core application with AspNet Core Identity? Anyone tried? |
@hikalkan Yes, I searched about it and I decided to use LDAP for authentication my user and I want to store my AD user in a register page using .Net core identity to control permissions management for my active user in my application in future. I read your identity server module, you created a custom |
Hello @mehdihadeli |
@gterdem Hi, I created a custom user manager for this purpose and I replaced it with default user manager:
|
@mehdihadeli Yeah, seems about right. Does it work for you? |
yes it worked correctly |
@mehdihadeli Good to hear that. Closing the issue. |
Hi,
I want to integrate my identity server with active directory. is there any module in abp for this purpose or I have to use built-in identity server features?
The text was updated successfully, but these errors were encountered: