Warning |
---|
This page is under construction |
WSO2 Identity Server provides a SOAP service to validate the OAuth2 token it has issued which can be used by the resource server. This section guides you through calling the SOAP service using the SOAP UI.
Info |
---|
The relevant code segment in the |
...
sample |
...
webapp WSO2 playground2 |
...
for OAuth2 can be |
...
found here. |
Following steps provides the guidance on calling the service using SOAP UI.
- Make admin services WSDL accessible.Open the file wso2is-5.1.0
Open the
Configure "HideAdminServiceWSDLs" property to false. (<IS_HOME>/repository/conf/carbon.xml
file and set the
<HideAdminServiceWSDLs>
property to false.
getNote Note: This step is just to make
servicethe
make sure toadmin services WSDL accessible. Once the service WSDL is taken
), revert this change to hide admin service WSDLs
Code Block language text <!-- If this parameter is set, the ?wsdl on an admin service will not give the admin service wsdl. --> <HideAdminServiceWSDLs>true</HideAdminServiceWSDLs>
- Restart the serverto make the change server to make the changes effective.
- Go to the SOAP UI and give the WSDL location.
Service Name: OAuth2TokenValidationService
WSDL location: https://localhost:9443/services/OAuth2TokenValidationService?wsdl
- Provide the following parameters to call the validate method as seen below.
- Since this validation service is an admin service, a valid user name and password needs to be provided in order to consume the service.
- Identifier value is the token to be validated.
- If the user claims are also required while validating the access token, a list of claim URIs can be provided as well.
- The response will
provide - contain details on the authorized user for the token,
if - whether the token is valid and how many more seconds for which the token is valid. If
there was - an error occurred while validating the token, it can be sent as the error message.
Panel | ||
---|---|---|
| ||
|