Currently I'm working on a project which exposes a XACML PDP as REST API. Which would eventually allow clients send REST requests containing various XACML request related properties and retrieve decisions on them.
I have already implemented the services, but now i need to align the REST endpoints correctly as defined in the REST specification for XACML 3.0 (http://docs.oasis-open.org/xacml/xacml-rest/v1.0/csprd03/xacml-rest-v1.0-csprd03.html)
In the document, it defines various URIs for each resource
ex: for the REST entry point the URI is (as in section 2.2.1) urn:oasis:names:tc:xacml:3.0:profile:rest:home
What I need to know is what is the corresponding URL for this URI
Assuming my service is hosted in https://example.com/xacml
is it https://example.com/xacml/home ?
Thank you