[Bug 6426] Fix Delivery Definition

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





--- Comment #2 from Robert Freund <bob@freunds.com>  2009-01-20 21:38:02 ---
proposal from
http://lists.w3.org/Archives/Public/public-ws-resource-access/2009Jan/0047.html

WS-Eventing Section 3.1 has the following statement:
Value of /s:Envelope/s:Body/*/wse:Delivery is a single element, wse:NotifyTo,
that contains the endpoint reference to which notification messages should be
sent.
It should be changed to:
Value of /s:Envelope/s:Body/*/wse:Delivery contains a single element,
wse:NotifyTo, that contains the endpoint reference to which notification
messages should be sent.
in order to allow any extension elements in <wse:Delivery>.

The XSD definition for <wse:DeliveryType>:
<xs:complexType name="DeliveryType" mixed="true">
    <xs:sequence>
      <xs:any namespace="##any" processContents="lax" 
              minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
    <xs:attribute name="Mode" type="xs:anyURI" use="optional" />
    <xs:anyAttribute namespace="##other" processContents="lax" />
  </xs:complexType>

should be modified to reflect the statement:
<xs:complexType name="DeliveryType" mixed="true">
    <xs:sequence>
      <xs:element ref="wse:NotifyTo" minOccurs="0" maxOccurs="1" />
      <xs:any namespace="##any" processContents="lax" 
              minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
    <xs:attribute name="Mode" type="xs:anyURI" use="optional" />
    <xs:anyAttribute namespace="##other" processContents="lax" />
  </xs:complexType>


-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Tuesday, 20 January 2009 21:38:17 UTC