2004/ws/addressing ws-addr-wsdl.xml,1.126,1.127

Update of /sources/public/2004/ws/addressing
In directory hutz:/tmp/cvs-serv6803

Modified Files:
	ws-addr-wsdl.xml 
Log Message:
Removed section 2.2
Updated policy references


Index: ws-addr-wsdl.xml
===================================================================
RCS file: /sources/public/2004/ws/addressing/ws-addr-wsdl.xml,v
retrieving revision 1.126
retrieving revision 1.127
diff -C 2 -d -r1.126 -r1.127
*** ws-addr-wsdl.xml	19 Jun 2007 14:18:35 -0000	1.126
--- ws-addr-wsdl.xml	26 Jul 2007 12:54:17 -0000	1.127
***************
*** 8,15 ****
  <!ENTITY document.status "Editors' copy $Date$">
  <!ENTITY wsa-title "&wsa-wsdl.title;">
! <!ENTITY prevloc "http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070516">
  ]>
  <?xml-stylesheet type='text/xsl' href='xmlspec-addressing.xsl'?>
! <spec w3c-doctype="cr" role="&document.role;">
      <header>
          <title>&wsa-wsdl.title;</title>
--- 8,15 ----
  <!ENTITY document.status "Editors' copy $Date$">
  <!ENTITY wsa-title "&wsa-wsdl.title;">
! <!ENTITY prevloc "http://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627">
  ]>
  <?xml-stylesheet type='text/xsl' href='xmlspec-addressing.xsl'?>
! <spec w3c-doctype="wd" role="&document.role;">
      <header>
          <title>&wsa-wsdl.title;</title>
***************
*** 230,308 ****
                  </example>
              </div2>
-             <div2 id="embedmetadataepr">
-                 <head>Embedding WSDL Metadata in an EPR</head>
-                 <p>WSDL 2.0 or, for backwards compatibility, 1.1 definitions can be embedded in the
-                     metadata section of an EPR to provide a consuming application with WSDL
-                     information that applies to the referenced endpoint. To do so, the creator of an
-                     EPR MAY include a WSDL 2.0 description element (or a WSDL 1.1 definitions
-                     element) in the metadata property of the EPR. The semantics of the embedded WSDL
-                     is as defined by the WSDL 2.0 or 1.1 specifications.</p>
-                 <p>In particular, embedding a WSDL service component description MAY be used by EPR
-                     issuers to indicate the presence of alternative addresses and protocol bindings
-                     to access the referenced endpoint. The alternatives are provided by the
-                     different endpoints of the embedded service. In the case of WSDL 1.1, additional
-                     ports can be conveyed by the WSDL 1.1 service definition which are not
-                     alternative access channels to the endpoint. In that case, if the InterfaceName
-                     or ServiceName elements are also included in the metadata section of the EPR,
-                     only the ports with the same interface as that specified are to be considered
-                     alternative access channels.</p>
-                 <p>If the ServiceName element appears in the EPR’s [metadata] and an embedded WSDL
-                     service component is also provided inside a descriptions or definitions
-                     component, then the ServiceName SHOULD match the name of (one or more of) the
-                     WSDL service(s) included therein; the endpoint (port) name SHOULD match as well
-                     if present. The behavior of an EPR consumer when the ServiceName doesn’t match
-                     an embedded description is undefined.</p>
-                 <example>
-                     <head>An EPR containing WSDL 2.0 metadata</head>
-                     <eg xml:space="preserve">
- &lt;wsa:EndpointReference
-     xmlns:wsa="&nsuri;"&gt;
-     
-   &lt;wsa:Address&gt;http://greath.example.com/2004/reservation&lt;/wsa:Address&gt;
-   &lt;wsa:Metadata
-       xmlns:wsdli="&wsdl20nsuri;-instance"
-       wsdli:wsdlLocation="http://greath.example.com/2004/wsdl/resSvc http://greath.example.com/2004/reservation.wsdl"&gt;
-     &lt;wsdl20:description  
-         targetNamespace="http://greath.example.com/2004/wsdl/resSvc"
-         xmlns:tns="http://greath.example.com/2004/wsdl/resSvc"
-         xmlns:ghns="http://greath.example.com/2004/wsdl/resSvc"
-         xmlns:wsdl20="&wsdl20nsuri;"&gt;
-       &lt;wsdl20:import namespace="http://greath.example.com/2004/wsdl/resSvc"
-           location="http://greath.example.com/2004/reservation.wsdl"/&gt;
-       &lt;wsdl20:service name="reservationService" 
-           interface="tns:reservationInterface"&gt;
-         &lt;wsdl20:endpoint name="reservationEndpoint" 
-           binding="tns:reservationSOAPBinding"
-           address ="http://greath.example.com/2004/reservation"/&gt;
-       &lt;/wsdl20:service&gt;
-     &lt;/wsdl20:description&gt;
-   &lt;/wsa:Metadata&gt;
- &lt;/wsa:EndpointReference&gt;
- </eg>
-                 </example>
-                 <example>
-                     <head>An EPR containing WSDL 1.1 metadata</head>
-                     <eg xml:space="preserve">
- &lt;wsa:EndpointReference
-     xmlns:wsa="&nsuri;"&gt;
-   &lt;wsa:Address&gt;http://greath.example.com/2004/reservation&lt;/wsa:Address&gt;
-   &lt;wsa:Metadata&gt;
-     &lt;wsdl11:definitions targetNamespace="http://greath.example.com/2004/wsdl/resSvc"
-         xmlns:ghns="http://greath.example.com/2004/wsdl/resSvc"
-         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-         xmlns:wsdl11="http://schemas.xmlsoap.org/wsdl/"&gt;
-       &lt;wsdl11:import namespace="http://greath.example.com/2004/wsdl/resSvc"  
-           location="http://greath.example.com/2004/reservation.wsdl"/&gt;
-       &lt;wsdl11:service name="reservationService"&gt;
-         &lt;wsdl11:port name="ep1" binding="ghns:reservationSOAPBinding"&gt; 
-           &lt;soap:address location="http://greath.example.com/2004/reservation"/&gt;
-         &lt;/wsdl11:port&gt;
-       &lt;/wsdl11:service&gt;
-     &lt;/wsdl11:definitions&gt;
-   &lt;/wsa:Metadata&gt;
- &lt;/wsd:EndpointReference&gt;
- </eg>
-                 </example>
-             </div2>
          </div1>
          <div1 id="indicatinguse">
--- 230,233 ----
***************
*** 1551,1585 ****
                              <titleref>Web Services Description Language (WSDL) 1.1</titleref>, March
                          2001.</bibl>
!        <bibl key="WSDL 2.0" href="http://www.w3.org/TR/2007/PR-wsdl20-20070523" id="WSDL20">
  	 <titleref>Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language</titleref>, R. Chinnici, J-J.
  	 Moreau, A. Ryman, S. Weerawarana, Editors. World Wide Web
! 	 Consortium, 23 May 2007. This
! 	 version of the "Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language" Specification is available is
! 	 available at http://www.w3.org/TR/2007/PR-wsdl20-20070523. The <loc href="http://www.w3.org/TR/wsdl20">latest version of "Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language"</loc>
  	 is available at http://www.w3.org/TR/wsdl20.
         </bibl>
!        <bibl key="WSDL 2.0 Adjuncts" href="http://www.w3.org/TR/2007/PR-wsdl20-adjuncts-20070523" id="WSDL20Adj">
  	 <titleref>Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts</titleref>, R. Chinnici, H. Haas,
  	 A. Lewis, J-J.  Moreau, D. Orchard, S. Weerawarana, Editors.
! 	 World Wide Web Consortium, 23 May
  	 2007.  This version of the "Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts"
! 	 Specification is available at http://www.w3.org/TR/2007/PR-wsdl20-adjuncts-20070523. The
  	 <loc href="http://www.w3.org/TR/wsdl20-adjuncts">latest version of
  	 "Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts"</loc> is available at http://www.w3.org/TR/wsdl20-adjuncts.
         </bibl>       
                      <bibl key="WS Policy 1.5" id="WSPolicy"
!                         href="http://www.w3.org/TR/2007/CR-ws-policy-20070605/">
                          <titleref>Web Services Policy 1.5 - Framework</titleref>, Asir S Vedamuthu,
                          et al., Editors. World
!                         Wide Web Consortium, 5 June 2007. This version of the WS-Policy
!                         Framework is http://www.w3.org/TR/2007/CR-ws-policy-20070605. The <loc
                              href="http://www.w3.org/TR/ws-policy">latest version of WS Policy
                              Framework</loc> is available at http://www.w3.org/TR/ws-policy </bibl>
                      <bibl key="WS Policy 1.5 - Attachment" id="WSPolicyAttachment"
!                         href="http://www.w3.org/TR/2007/CR-ws-policy-attach-20070605/">
                          <titleref>Web Services Policy 1.5 - Attachment</titleref>, Asir S Vedamuthu,
                          et al., Editors. World
!                         Wide Web Consortium, 5 June 2007. This version of the WS-Policy
!                         Attachment is http://www.w3.org/TR/2007/CR-ws-policy-attach-20070605. The <loc
                              href="http://www.w3.org/TR/ws-policy-attach">latest version of WS Policy
                              Attachment</loc> is available at http://www.w3.org/TR/ws-policy-attach </bibl>
--- 1476,1510 ----
                              <titleref>Web Services Description Language (WSDL) 1.1</titleref>, March
                          2001.</bibl>
!        <bibl key="WSDL 2.0" href="http://www.w3.org/TR/2007/REC-wsdl20-20070626" id="WSDL20">
  	 <titleref>Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language</titleref>, R. Chinnici, J-J.
  	 Moreau, A. Ryman, S. Weerawarana, Editors. World Wide Web
! 	 Consortium, 26 June 2007. This
! 	 version of the "Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language" Recommendation is available is
! 	 available at http://www.w3.org/TR/2007/REC-wsdl20-20070626. The <loc href="http://www.w3.org/TR/wsdl20">latest version of "Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language"</loc>
  	 is available at http://www.w3.org/TR/wsdl20.
         </bibl>
!        <bibl key="WSDL 2.0 Adjuncts" href="http://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626" id="WSDL20Adj">
  	 <titleref>Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts</titleref>, R. Chinnici, H. Haas,
  	 A. Lewis, J-J.  Moreau, D. Orchard, S. Weerawarana, Editors.
! 	 World Wide Web Consortium, 26 June
  	 2007.  This version of the "Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts"
! 	 Recommendation is available at http://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626. The
  	 <loc href="http://www.w3.org/TR/wsdl20-adjuncts">latest version of
  	 "Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts"</loc> is available at http://www.w3.org/TR/wsdl20-adjuncts.
         </bibl>       
                      <bibl key="WS Policy 1.5" id="WSPolicy"
!                         href="http://www.w3.org/TR/2007/PR-ws-policy-20070706">
                          <titleref>Web Services Policy 1.5 - Framework</titleref>, Asir S Vedamuthu,
                          et al., Editors. World
!                         Wide Web Consortium, 6 July 2007. This version of the WS-Policy
!                         Framework is http://www.w3.org/TR/2007/PR-ws-policy-20070706. The <loc
                              href="http://www.w3.org/TR/ws-policy">latest version of WS Policy
                              Framework</loc> is available at http://www.w3.org/TR/ws-policy </bibl>
                      <bibl key="WS Policy 1.5 - Attachment" id="WSPolicyAttachment"
!                         href="http://www.w3.org/TR/2007/PR-ws-policy-attach-20070706">
                          <titleref>Web Services Policy 1.5 - Attachment</titleref>, Asir S Vedamuthu,
                          et al., Editors. World
!                         Wide Web Consortium, 6 July 2007. This version of the WS-Policy
!                         Attachment is http://www.w3.org/TR/2007/PR-ws-policy-attach-20070706. The <loc
                              href="http://www.w3.org/TR/ws-policy-attach">latest version of WS Policy
                              Attachment</loc> is available at http://www.w3.org/TR/ws-policy-attach </bibl>

Received on Thursday, 26 July 2007 12:54:28 UTC