UserStoreConfigAdminService问题

问题描述 投票:0回答:1

通过以下步骤,但在到达UserStoreConfigAdminService?wsdl时遇到问题

https://docs.wso2.com/display/IS530/Calling+Admin+Services

出现以下错误:找不到该操作的端点引用(EPR)为/ services / UserStoreConfigAdminService /,并且WSA操作= null。如果此EPR以前可以访问,请联系服务器管理员。

也说该服务可用于OSGi的在AdminServices列表

与Identity Server 5.8一起使用时是否存在问题?缺少一步?感谢您的帮助

api wso2 store
1个回答
0
投票

如果使用的是IS 5.8.0 pack,则需要,

  1. 在carbon.xml中将以下配置的值更改为false

    false

  2. 重新启动服务器

  3. 使用以下URL来访问WSDL文件。

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

如果您使用的是IS 5.9.0,请参阅文档[1]。您需要做的是]

  1. 打开/ repository / conf目录中的deployment.toml文件,并添加admin_service.wsdl元素,并将其设置为false,如下所示。

[[admin_service.wsdl] enable =“ false”

  1. 重新启动WSO2标识服务器。

  2. 使用以下URL来访问WSDL文件。

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

[1] https://is.docs.wso2.com/en/5.9.0/develop/managing-user-stores-with-apis/

© www.soinside.com 2019 - 2024. All rights reserved.