- From: Doug Davis via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 21 May 2009 14:53:24 +0000
- To: public-ws-resource-access-notifications@w3.org
Update of /w3ccvs/WWW/2002/ws/ra/edcopies/ws-evt
In directory hutz:/tmp/cvs-serv15992/ws-evt
Modified Files:
eventing.wsdl eventing.xsd
Log Message:
6429 6674
Index: eventing.wsdl
===================================================================
RCS file: /w3ccvs/WWW/2002/ws/ra/edcopies/ws-evt/eventing.wsdl,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- eventing.wsdl 7 Apr 2009 23:27:42 -0000 1.7
+++ eventing.wsdl 21 May 2009 14:53:22 -0000 1.8
@@ -46,6 +46,10 @@
<wsdl:message name="SubscriptionEnd" >
<wsdl:part name="body" element="wse:SubscriptionEnd" />
</wsdl:message>
+
+ <message name="notifyEvent">
+ <part name="parameter" element="tns:Notify">
+ </message>
<wsdl:portType name="EventSource" >
<wsdl:operation name="SubscribeOp" >
@@ -92,4 +96,11 @@
wsam:Action="http://www.w3.org/2009/02/ws-evt/UnsubscribeResponse"/>
</wsdl:operation>
</wsdl:portType>
+
+ <portType name="WrappedSinkPortType">
+ <operation name="NotifyEvent">
+ <input message="tns:notifyEvent" name="NotifyEvent"
+ wsam:Action="http://www.w3.org/2009/02/ws-evt/WrappedSinkPortType/NotifyEvent"/>
+ </operation>
+ </portType>
</wsdl:definitions>
Index: eventing.xsd
===================================================================
RCS file: /w3ccvs/WWW/2002/ws/ra/edcopies/ws-evt/eventing.xsd,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- eventing.xsd 19 May 2009 20:52:37 -0000 1.11
+++ eventing.xsd 21 May 2009 14:53:22 -0000 1.12
@@ -226,4 +226,17 @@
</xs:complexType>
<xs:attribute name="EventSource" type="xs:boolean" />
+
+ <!-- Wrapped Events -->
+ <xs:complexType name="EventType" mixed="true">
+ <xs:sequence>
+ <xs:any namespace="##any" processContents="lax" minOccurs="0"
+ maxOccurs="unbounded"/>
+ </xs:sequence>
+ <xs:attribute name="actionURI" type="xs:anyURI" use="optional" />
+ <xs:anyAttribute namespace="##other" processContents="lax" />
+ </xs:complexType>
+
+ <xs:element name="Notify" type="tns:EventType" />
+
</xs:schema>
Received on Thursday, 21 May 2009 14:53:35 UTC