1

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

如何添加新的用户配置文件?

4

1 回答 1

0

我在代码中发现 LDAP 用户存储管理器不支持用户的多个配置文件。这就是没有出现“添加新配置文件”按钮的原因。要查看它,我必须将我的 user-mgt 配置为使用 JDBC 使用存储管理器,或者实现我自己的 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.
}
于 2012-08-22T12:30:28.167 回答