WSO2 Identity Server UserAdmin SOAP接口

扬布

我想知道是否可以通过UserAdmin SOAP接口检索用户声明?我发现添加用户时可以指定用户声明。我也注意到按要求获取用户列表是可能的,但我还没有找到如何检索用户的所有要求的方法。

有什么提示吗?

提前致谢。

达雷

您可以尝试使用“ RemoteUserStoreManagerService”。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.ws.um.carbon.wso2.org">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:getUserClaimValues>
         <ser:userName>admin</ser:userName>
      </ser:getUserClaimValues>
   </soapenv:Body>
</soapenv:Envelope>

以上要求将返回您默认配置文件的管理员用户的声明。


编辑

根据评论,您需要新的管理服务的WSDL。

默认情况下,管理服务的WSDL是隐藏的。要更改该行为,请打开,<IS_HOME>/repository/conf/carbon.xml然后找到HideAdminServiceWSDLs标签并将其设置为false

然后,您可以从URL查看任何管理服务的WSDL。

https://localhost:9443/services/<SERVICE_NAME>?wsdl 

在这种情况下

https://localhost:9443/services/RemoteUserStoreManagerService?wsdl

HTH,

达雷

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

WSO2与Identity Server的单点登录

来自分类Dev

WSO2 Identity Server升级

来自分类Dev

WSO2 UserAdmin API文档

来自分类Dev

使用WSO2 Identity Server和WSO2 API Manager保护后端

来自分类Dev

使用WSO2 Identity Server的SAML2.0 SSO?

来自分类Dev

WSO2 Identity Server是否支持OpenId Connect发现

来自分类Dev

基于SAML / XACML的WSO2 Identity Server访问控制

来自分类Dev

WSO2 Identity Server中的SAML请求-响应处理

来自分类Dev

使用WSO2 Identity Server的SAML2.0 SSO?

来自分类Dev

集成bonita和wso2 Identity Server

来自分类Dev

使用WSO2 Identity Server 5.1进行单点登录

来自分类Dev

WSO2 API Manager使用Identity Server存储访问

来自分类Dev

wso2 Identity Server-无法删除租户

来自分类Dev

用于会话管理的 WSO2 Identity Server 5.0.0 Api

来自分类Dev

WSO2 Identity Server与ADFS Server集成时抛出NullpointerException

来自分类Dev

WSO2 Identity Server 5.9.0 oAuth2配置类型

来自分类Dev

如何使用php和soap从wso2cep-4.1.0获取UserAdmin服务功能列表?

来自分类Dev

WSO2 sh wso2server.sh -Dmigrate -Dcomponent=identity 没有运行迁移脚本

来自分类Dev

WSO2 Identity Server:在注册时自动将用户添加到角色

来自分类Dev

Wso2 Identity Server:提高资源上属性的AttributeFinderModule的性能

来自分类Dev

WSO2 Identity Server 5.1.0只能与JRE一起运行吗?

来自分类Dev

在WSO2 Identity Server仪表板中看不到任何选项

来自分类Dev

WSO2 Identity Server 5.0.0-chpasswd.sh无法正常工作

来自分类Dev

为WSO2 Identity Server部署自定义密码策略文件

来自分类Dev

有关集成WSO2 API管理器,Identity Server和Shibboleth的建议

来自分类Dev

WSO2 API Manager(和Identity Server)上的令牌验证

来自分类Dev

WSO2 Identity Server 5.0不包括“自我注册(注册)”页面?

来自分类Dev

Spring SAML与WSO2 Identity Server集成,未重新协调SAML消息ID

来自分类Dev

如何自定义所有WSO2 Identity Server登录相关页面

Related 相关文章

  1. 1

    WSO2与Identity Server的单点登录

  2. 2

    WSO2 Identity Server升级

  3. 3

    WSO2 UserAdmin API文档

  4. 4

    使用WSO2 Identity Server和WSO2 API Manager保护后端

  5. 5

    使用WSO2 Identity Server的SAML2.0 SSO?

  6. 6

    WSO2 Identity Server是否支持OpenId Connect发现

  7. 7

    基于SAML / XACML的WSO2 Identity Server访问控制

  8. 8

    WSO2 Identity Server中的SAML请求-响应处理

  9. 9

    使用WSO2 Identity Server的SAML2.0 SSO?

  10. 10

    集成bonita和wso2 Identity Server

  11. 11

    使用WSO2 Identity Server 5.1进行单点登录

  12. 12

    WSO2 API Manager使用Identity Server存储访问

  13. 13

    wso2 Identity Server-无法删除租户

  14. 14

    用于会话管理的 WSO2 Identity Server 5.0.0 Api

  15. 15

    WSO2 Identity Server与ADFS Server集成时抛出NullpointerException

  16. 16

    WSO2 Identity Server 5.9.0 oAuth2配置类型

  17. 17

    如何使用php和soap从wso2cep-4.1.0获取UserAdmin服务功能列表?

  18. 18

    WSO2 sh wso2server.sh -Dmigrate -Dcomponent=identity 没有运行迁移脚本

  19. 19

    WSO2 Identity Server:在注册时自动将用户添加到角色

  20. 20

    Wso2 Identity Server:提高资源上属性的AttributeFinderModule的性能

  21. 21

    WSO2 Identity Server 5.1.0只能与JRE一起运行吗?

  22. 22

    在WSO2 Identity Server仪表板中看不到任何选项

  23. 23

    WSO2 Identity Server 5.0.0-chpasswd.sh无法正常工作

  24. 24

    为WSO2 Identity Server部署自定义密码策略文件

  25. 25

    有关集成WSO2 API管理器,Identity Server和Shibboleth的建议

  26. 26

    WSO2 API Manager(和Identity Server)上的令牌验证

  27. 27

    WSO2 Identity Server 5.0不包括“自我注册(注册)”页面?

  28. 28

    Spring SAML与WSO2 Identity Server集成,未重新协调SAML消息ID

  29. 29

    如何自定义所有WSO2 Identity Server登录相关页面

热门标签

归档