我正在尝试使用 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");