Consider about a scenarios that enterprise user’s details can be found in two place. User credentials may be kept in one user store and User’s attribute may be stored in another user store. Lets see how WSO2 Identity Server can be used to merge these two user stores and retrieve the user’s details in unique […]
Tag: User Management
In my previous blog post, we understood about Admin services in WSO2 products. We have implemented a web service client for RemoteUserStoreManagerService. We used Axis2 client for that. Today, we are going to look, how we can implement a JAX-WS cleint for invoking admin services. I am using the RemoteUserStoreManagerService as sample admin service. Step […]
Identity Server supports most of the user management related functions. It provides SOAP based web service API (More details from here ) and REST API (According to SCIM specification) for applications to use these user management functions. Also, these user management functions are called by the other component of the WSO2IS. As an example, These […]
In my previous post, we discussed how we can configure Identity Server (connected with LDAP) to authenticate users with multiple attributes. But I have seen that there are some conflict around using email user name with Identity Server. Let me explain them in briefly. Why is it not possible to authenticate with email attribute with […]
If you are using Identity Server for user and role management,You may wonder how we could manage user’s attributes with it. In identity server, each user store attribute can be mapped as a claim. Therefore you need to go through claim management and properly map your LDAP/AD/JDBC user store attributes with the claim uris defined […]
In LDAP user object contains different attributes such as uid, cn , email and so on. Some of the attributes can be unique. As an example normally uid and email can be unique attributes for user. Once you connect your LDAP with an application, application can use one of unique attribute in LDAP to authenticate […]
According to the WSO2 Identity Server product page, It supports for LDAP, AD and JDBC based user stores. And also It said that it has capability to plug custom user stores. What is mean by custom user stores? It can be anything such as NoSQL (Cassandra), Legacy user store, JDBC user store with different schema…. […]
If you are familiar with WSO2 Carbon platform, You may already know that WSO2 Carbon platform provides ability to plug your enterprise user store in an easier way…. Your user store can be a LDAP, AD or any JDBC based user store and you only need to do some configuration changes in the user-mgt.xml file […]
WSO2 Identity Server provides a simple web service API for user role management. If your application needs a user role management function, you can directly integrate with Identity Server rather than dealing with the user store. There is a web service API called RemoteUserStoreManagerService that can be used to manage users and roles. […]