- From: Doug Davis via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 15 Jan 2011 16:35:52 +0000
- To: public-ws-resource-access-notifications@w3.org
Update of /w3ccvs/WWW/2002/ws/ra/edcopies/scenario
In directory hutz:/tmp/cvs-serv11613/scenario
Modified Files:
scenarioSink.wsdl scenarioSource.evd
Log Message:
add more events to the scenario and clean up some text
Index: scenarioSource.evd
===================================================================
RCS file: /w3ccvs/WWW/2002/ws/ra/edcopies/scenario/scenarioSource.evd,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- scenarioSource.evd 15 Jan 2011 16:02:48 -0000 1.1
+++ scenarioSource.evd 15 Jan 2011 16:35:50 -0000 1.2
@@ -1,16 +1,25 @@
<wsevd:EventDescriptions
- targetNamespace="http://www.w3.org/2010/08/scenario/eventing"
- xmlns:sce="http://www.w3.org/2010/08/scenario"
+ targetNamespace="http://www.w3.org/2002/ws/ra/edcopies/scenario/eventing"
+ xmlns:sce="http://www.w3.org/2002/ws/ra/edcopies/scenario"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:wsevd="http://www.w3.org/2010/08/ws-evd">
<wsevd:types>
- <xs:schema targetNamespace="http://www.w3.org/2010/08/scenario">
+ <xs:schema targetNamespace="http://www.w3.org/2002/ws/ra/edcopies/scenario">
<xs:include schemaLocation="animal.xsd"/>
</xs:schema>
</wsevd:types>
- <wsevd:eventType ID="UpdateLocation"
- element="sce:Animal"
- actionURI="http://www.w3.org/2010/08/scenario/eventing/UpdateLocation"/>
-</wsevd:EventDescriptions>
\ No newline at end of file
+ <wsevd:eventType ID="UpdateLocation" element="sce:Animal"
+ actionURI="http://www.w3.org/2002/ws/ra/edcopies/scenario/NewAnimal"/>
+
+ <wsevd:eventType ID="UpdateLocation" element="sce:Animal"
+ actionURI="http://www.w3.org/2002/ws/ra/edcopies/scenario/UpdateLocation"/>
+
+ <wsevd:eventType ID="UpdateLocation" element="sce:Animal"
+ actionURI="http://www.w3.org/2002/ws/ra/edcopies/scenario/UpdateAnimal"/>
+
+ <wsevd:eventType ID="UpdateLocation" element="sce:Animal"
+ actionURI="http://www.w3.org/2002/ws/ra/edcopies/scenario/RemoveAnimal"/>
+
+</wsevd:EventDescriptions>
Index: scenarioSink.wsdl
===================================================================
RCS file: /w3ccvs/WWW/2002/ws/ra/edcopies/scenario/scenarioSink.wsdl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- scenarioSink.wsdl 15 Jan 2011 16:02:48 -0000 1.1
+++ scenarioSink.wsdl 15 Jan 2011 16:35:50 -0000 1.2
@@ -1,44 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
-<wsdl:definitions xmlns:tns="http://www.w3.org/2010/08/scenario/eventing"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
- xmlns:wsp="http://www.w3.org/ns/ws-policy"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:wsevd="http://www.w3.org/2010/08/ws-evd"
- xmlns:sce="http://www.w3.org/2010/08/scenario"
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- targetNamespace="http://www.w3.org/2010/08/scenario/eventing">
- <wsdl:types>
- <xs:schema targetNamespace="http://www.w3.org/2010/08/scenario">
- <xs:include schemaLocation="animal.xsd"/>
- </xs:schema>
+<wsdl:definitions
+ xmlns:tns="http://www.w3.org/2002/ws/ra/edcopies/scenario"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
+ xmlns:wsp="http://www.w3.org/ns/ws-policy"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ xmlns:wsevd="http://www.w3.org/2010/08/ws-evd"
+ xmlns:sce="http://www.w3.org/2002/ws/ra/edcopies/scenario"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ targetNamespace="http://www.w3.org/2002/ws/ra/edcopies/scenario">
+
+ <wsdl:types>
+ <xs:schema targetNamespace="http://www.w3.org/2002/ws/ra/edcopies/scenario">
+ <xs:include schemaLocation="animal.xsd"/>
+ </xs:schema>
</wsdl:types>
- <wsdl:message name="UpdateLocationMsg">
- <wsdl:part name="event" element="sce:Animal"/>
- </wsdl:message>
- <wsdl:portType name="AutoGenPortType41.859">
- <wsdl:operation name="UpdateLocationOp">
- <wsdl:input message="tns:UpdateLocationMsg"
- wsam:Action="http://www.w3.org/2010/08/scenario/eventing/UpdateLocation"/>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="AutoGenBinding41.859" type="tns:AutoGenPortType41.859">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="UpdateLocationOp">
- <soap:operation soapAction=""/>
- <wsdl:input>
- <soap:body use="literal"/>
- </wsdl:input>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="AutoGenService41.859">
- <wsdl:port name="AutoGenPort41.859" binding="tns:AutoGenBinding41.859">
- <soap:address location="http://www.example.org/NotificationListeners/41.859"/>
- <wsp:Policy>
- <wsam:Addressing>
- <wsp:Policy/>
- </wsam:Addressing>
- </wsp:Policy>
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>
\ No newline at end of file
+
+ <wsdl:message name="NewAnimalMsg">
+ <wsdl:part name="event" element="sce:Animal"/>
+ </wsdl:message>
+
+ <wsdl:message name="UpdateLocationMsg">
+ <wsdl:part name="event" element="sce:Animal"/>
+ </wsdl:message>
+
+ <wsdl:message name="UpdateAnimalMsg">
+ <wsdl:part name="event" element="sce:Animal"/>
+ </wsdl:message>
+
+ <wsdl:message name="RemoveAnimalMsg">
+ <wsdl:part name="event" element="sce:Animal"/>
+ </wsdl:message>
+
+
+ <wsdl:portType name="SinkPort">
+ <wsdl:operation name="NewAnimalOp">
+ <wsdl:input message="tns:NewAnimalMsg"
+ wsam:Action="http://www.w3.org/2002/ws/ra/edcopies/scenario/NewAnimal"/>
+ </wsdl:operation>
+
+ <wsdl:operation name="UpdateLocationOp">
+ <wsdl:input message="tns:UpdateLocationMsg"
+ wsam:Action="http://www.w3.org/2002/ws/ra/edcopies/scenario/UpdateLocation"/>
+ </wsdl:operation>
+
+ <wsdl:operation name="UpdateAnimalOp">
+ <wsdl:input message="tns:UpdateAnimalMsg"
+ wsam:Action="http://www.w3.org/2002/ws/ra/edcopies/scenario/UpdateAnimal"/>
+ </wsdl:operation>
+
+ <wsdl:operation name="RemoveAnimalOp">
+ <wsdl:input message="tns:RemoveAnimalMsg"
+ wsam:Action="http://www.w3.org/2002/ws/ra/edcopies/scenario/RemoveAnimal"/>
+ </wsdl:operation>
+ </wsdl:portType>
+
+ <wsdl:binding name="SinkBinding" type="tns:SinkPort">
+ <soap:binding style="document"
+ transport="http://schemas.xmlsoap.org/soap/http"/>
+
+ <wsdl:operation name="NewAnimalOp">
+ <soap:operation soapAction=""/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+
+ <wsdl:operation name="UpdateLocationOp">
+ <soap:operation soapAction=""/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+
+ <wsdl:operation name="UpdateAnimalOp">
+ <soap:operation soapAction=""/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+
+ <wsdl:operation name="RemoveAnimalOp">
+ <soap:operation soapAction=""/>
+ <wsdl:input>
+ <soap:body use="literal"/>
+ </wsdl:input>
+ </wsdl:operation>
+ </wsdl:binding>
+
+ <wsdl:service name="SinkService">
+ <wsdl:port name="SinkPort" binding="tns:SinkBinding">
+ <soap:address location="http://example.org/NotificationListeners"/>
+ <wsp:Policy>
+ <wsam:Addressing>
+ <wsp:Policy/>
+ </wsam:Addressing>
+ </wsp:Policy>
+ </wsdl:port>
+ </wsdl:service>
+</wsdl:definitions>
Received on Saturday, 15 January 2011 16:35:55 UTC