3

我正在尝试使用 UserStoreManager 在 WSO2 身份服务器中添加用户帐户。添加具有或不具有一个声明值的用户时,我没有问题,但是当我尝试在声明的映射中添加多个声明值时,它会抛出一个异常:

org.wso2.carbon.um.ws.api.WSUserStoreManager handleException 
SEVERE: Can not access the directory context oruser already exists in the system
org.apache.axis2.AxisFault: Can not access the directory context oruser already exists in the system..

这是我使用的代码

Map<String, String> claims = new HashMap<String, String>();
claims.put("http://wso2.org/claims/givenname", "John");
//second value causing the exception
claims.put("http://wso2.org/claims/lastname", "Doe");
STORE_MANAGER.addUser("JohnDoe", "123456",
      new String[] { Constants.DEFAULT_ROLE }, claims, "default");
4

1 回答 1

1

您使用的 IS 版本是什么?

顺便说一句,请试试这个

Map<String, String> claims = new HashMap<String, String>();

claims.put("http://wso2.org/claims/givenname", "John");

claims.put("http://wso2.org/claims/lastname", "Doe");

remoteUserStoreManager.addUser("JohnDoe", "123456",null, claims, "default");
于 2013-01-20T14:23:17.860 回答