Advertisement
ManZzup

XACML 3.0 SOAP request

Mar 25th, 2016
1,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.38 KB | None | 0 0
  1. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://org.apache.axis2/xsd">
  2.    <soapenv:Header/>
  3.    <soapenv:Body>
  4.       <xsd:getDecision>
  5.          <xsd:request>
  6.  
  7.            <![CDATA[
  8.          
  9.          <Request xmlns="urn:oasis:names:tc:xacml:3.0:core:schema:wd-17" CombinedDecision="false" ReturnPolicyIdList="false">
  10. <Attributes Category="urn:oasis:names:tc:xacml:3.0:attribute-category:action">
  11.    <Attribute AttributeId="urn:oasis:names:tc:xacml:1.0:action:action-id" IncludeInResult="false">
  12.        <AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">read</AttributeValue>
  13.    </Attribute>
  14. </Attributes>
  15. <Attributes Category="urn:oasis:names:tc:xacml:3.0:attribute-category:resource">
  16.    <Attribute AttributeId="urn:oasis:names:tc:xacml:1.0:resource:resource-id" IncludeInResult="false">
  17.        <AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">http://127.0.0.1/service/very_secure/</AttributeValue>
  18.    </Attribute>
  19. </Attributes>
  20. <Attributes Category="urn:oasis:names:tc:xacml:3.0:group">
  21.    <Attribute AttributeId="group" IncludeInResult="false">
  22.        <AttributeValue DataType="http://www.w3.org/2001/XMLSchema#string">admin</AttributeValue>
  23.    </Attribute>
  24. </Attributes>
  25. </Request>
  26.    
  27.     ]]>
  28.    
  29.  
  30.          </xsd:request>
  31.       </xsd:getDecision>
  32.    </soapenv:Body>
  33. </soapenv:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement