[Bug 4301] Test case for xml:id

http://www.w3.org/Bugs/Public/show_bug.cgi?id=4301

           Summary: Test case for xml:id
           Product: WS-Policy
           Version: CR
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Test Suite
        AssignedTo: fsasaki@w3.org
        ReportedBy: fsasaki@w3.org
         QAContact: public-ws-policy-qa@w3.org


Title: Test case for xml:id

Description: This issue provides a test case for xml:id.

Justification:
The test case is necessary during the CR phase.

Proposal: Below is a document based on the 20061102 draft of the attachment
document, the example in section 5.1. The document below contains xml:id
attributes used for policy identification. An implementation needs to be able
to resolve the references made via the <policyReference> elements witin the
same document.

<wsdl20:description xmlns="http://www.w3.org/2006/07/ws-policy"
xmlns:wsp="http://www.w3.org/2006/07/ws-policy"
xmlns:wsdl20="http://www.w3.org/2006/01/wsdl"
xmlns:mtom="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization"
xmlns:wsap="http://www.w3.org/2006/05/addressing/wsdl"
xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
   <Policy xml:id="common">
     <mtom:OptimizedMimeSerialization wsp:Optional="true"/>
     <wsap:UsingAddressing />
   </Policy>
  <Policy xml:id="secure">
    <ExactlyOne>
      <sp:TransportBinding></sp:TransportBinding>
      <sp:AsymmetricBinding></sp:AsymmetricBinding >
    </ExactlyOne>
  </Policy>
  <wsdl20:binding name="SecureBinding"
      interface="tns:RealTimeDataInterface" >
    <PolicyReference URI="#secure" />
    <wsdl20:operation name="GetRealQuote" ></wsdl20:operation>    
  </wsdl20:binding>
  <wsdl20:service name="RealTimeDataService"
       interface="tns:RealTimeDataInterface" >
    <wsdl20:endpoint name="RealTimeDataPort" 
         binding="tns:SecureBinding">
      <PolicyReference URI="#common" />      
    </wsdl20:endpoint>
  </wsdl20:service>
</wsdl20:description>

Received on Tuesday, 6 February 2007 12:12:04 UTC