3

<Property name="ReadOnly">false</Property>- 这是在我的身份服务器的 usr-mgt.xml 中设置的。

当我尝试调用设置用户声明值的方法时 - storeManager.setUserClaimValue(String userName, String claimURI, String claimValue,String profileName) 它给了我这个异常:

org.wso2.carbon.user.core.UserStoreException: User store is operating in read only mode. Cannot write into the user store.

我错过了什么吗?

4

1 回答 1

0

如果用户存储管理器类上的 LDAP 是 ReadWrite,请在 user-mgt.xml 中调用以下类

class="org.wso2.carbon.user.core.ldap.ReadWriteLDAPUserStoreManager"

如果用户存储管理器类上的 LDAP 是只读的,请在 user-mgt.xml 中调用以下类

class="org.wso2.carbon.user.core.ldap.ReadOnlyLDAPUserStoreManager

于 2013-08-21T05:39:26.693 回答