- From: Philippe Le Hegaret via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 09 Jul 2007 20:33:18 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing/testsuite/documents/wsdl20 In directory hutz:/tmp/cvs-serv18419/documents/wsdl20 Added Files: .htaccess wsaTestService.wsdl Log Message: Moved from cvs.w3.org --- NEW FILE: .htaccess --- <Files ~ "\.html"> ForceType 'text/html; charset=utf-8' </Files> --- NEW FILE: wsaTestService.wsdl --- <?xml version="1.0" encoding="utf-8"?> <!-- $Id: wsaTestService.wsdl,v 1.1 2007/07/09 20:33:16 plehegar Exp $ --> <description xmlns="http://www.w3.org/2005/08/wsdl" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:whttp="http://www.w3.org/2005/08/wsdl/http" xmlns:wsoap="http://www.w3.org/2005/08/wsdl/soap" xmlns:wsdlx="http://www.w3.org/2005/08/wsdl-extensions" xmlns:notify="http://example.org/notify" xmlns:echo="http://example.org/echo" xmlns:service="http://example.org/wsaTestService" targetNamespace="http://example.org/wsaTestService"> <types> <xs:schema targetNamespace="http://example.org/notify" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name='notify' type='xs:string'/> </xs:schema> <xs:schema targetNamespace="http://example.org/echo" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name='echoIn' type='xs:string'/> <xs:element name='echoOut' type='xs:string'/> </xs:schema> </types> <interface name="wsaTestService"> <fault name="service:EmptyEchoString" /> <operation name="notify" pattern="http://www.w3.org/2005/08/wsdl/in-only"> <input messageLabel="In" element="notify:notify"/> </operation> <operation name="echoIn" pattern="http://www.w3.org/2005/08/wsdl/robust-in-only"> <input messageLabel="In" element="s1:echoIn"/> <outfault ref="service:EmptyEchoString" messageLabel="Out" /> </operation> <operation name="echoOut" pattern="http://www.w3.org/2005/08/wsdl/robust-in-only"> <input messageLabel="In" element="s1:echoOut"/> <outfault ref="service:EmptyEchoString" messageLabel="Out" /> </operation> <operation name="echo" pattern="http://www.w3.org/2005/08/wsdl/in-out"> <input messageLabel="In" element="s1:echoIn"/> <output messageLabel="Out" element="s1:echoOut"/> <outfault ref="service:EmptyEchoString" messageLabel="Out" /> </operation> </interface> <binding name="wsaTestSoap11Binding" interface="wsaTestService" type="http://www.w3.org/2005/08/wsdl/soap" wsoap:version="1.1" > wsoap:protocol="http://www.w3.org/2003/05/soap/bindings/HTTP"> <operation ref="notify" /> <operation ref="echoIn" /> <operation ref="echoOut" /> <operation ref="echo" /> <fault ref="service:EmptyEchoString" wsoap:code="echo:EmptyEchoString"/> </binding> <binding name="wsaTestSoap12Binding" interface="wsaTestService" type="http://www.w3.org/2005/08/wsdl/soap" wsoap:version="1.2" > wsoap:protocol="http://www.w3.org/2003/05/soap/bindings/HTTP"> <!-- Note: the request only SOAP MEP doesn't actually exist! --> <operation ref="notify" wsoap:mep="http://www.w3.org/2003/05/soap/mep/request" /> <operation ref="echoIn" wsoap:mep="http://www.w3.org/2003/05/soap/mep/request" /> <operation ref="echoOut" wsoap:mep="http://www.w3.org/2003/05/soap/mep/request" /> <operation ref="echo" wsoap:mep="http://www.w3.org/2003/05/soap/mep/request-response" /> <fault ref="service:EmptyEchoString" wsoap:code="echo:EmptyEchoString"/> </binding> <wsdl:service name="wsaTestService" interface="service:wsaTestService"> <wsdl:endpoint name="wsaTestSoap11Endpoint" binding="service:wsaTestSoap11Binding" address="http://example.org/node/B"/> <wsdl:endpoint name="wsaTestSoap12Endpoint" binding="service:wsaTestSoap12Binding" address="http://example.org/node/B"/> </wsdl:service> </description>
Received on Monday, 9 July 2007 20:33:23 UTC