Reputation: 23
I am studying about XACML and testing polices using WSO2 IS.
I can handle the XACML policies (create, disable, change, etc.) using WSO2 IS API?
Where can I find examples, documentation, etc.?
I found this example [1] in Java (usage WSO2 libs/jars), but my tests are in Python.
Upvotes: 0
Views: 195
Reputation: 457
You can handle XACML policies in WSO2 Identity Server through the SOAP API using Python or another programming language.
The WSDL for the API can be retrieved from the URL: https://{ip-address}:{port}/services/EntitlementPolicyAdminService?wsdl
If you are not familiar with WSDL using Python, try to play a little with SOAPUI or Postman. That typically helps to get started with the SOAP API
Upvotes: 1