wso2身份服务器 - 添加新配置文件

时间:2012-08-21 12:43:11

标签: wso2 wso2is

我正在使用wso2身份服务器3.2.3。 我想创建一个新的用户配置文件。 我以管理员身份连接然后转到我的身份/我的个人资料但我没有看到应该位于个人资料表上方的“添加新个人资料”按钮。

如何添加新的用户个人资料?

1 个答案:

答案 0 :(得分:0)

我在代码中发现LDAP用户存储管理器不支持用户的多个配置文件。这就是为什么没有出现“添加新配置文件”按钮的原因。 要查看它,我必须配置我的user-mgt以使用JDBC use store manager,或者实现我自己的UserStoreManager。

请参阅org.wso2.carbon.user.core.ldap.LDAPUserStoreManager源代码的摘录:

/**
  * This method is to check whether multiple profiles are allowed with a particular user-store.
  * For an example, currently, JDBC user store supports multiple profiles and where as ApacheDS
  * does not allow.
  * LDAP currently does not allow multiple profiles.
  * @return boolean
  */
public boolean isMultipleProfilesAllowed() {
    return false;  //To change body of implemented methods use File | Settings | File Templates.
}