- From: Arthur Ryman via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 11 May 2006 01:45:02 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/test-suite/interchange In directory hutz:/tmp/cvs-serv15862/test-suite/interchange Modified Files: wsdlcm-rpc.xsd Log Message: corrected type of wrpc:signature Index: wsdlcm-rpc.xsd =================================================================== RCS file: /sources/public/2002/ws/desc/test-suite/interchange/wsdlcm-rpc.xsd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wsdlcm-rpc.xsd 9 May 2006 01:04:43 -0000 1.1 --- wsdlcm-rpc.xsd 11 May 2006 01:45:00 -0000 1.2 *************** *** 14,21 **** <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/ws/desc/wsdl/component-rpc" targetNamespace="http://www.w3.org/2002/ws/desc/wsdl/component-rpc" elementFormDefault="qualified"> ! <xs:element name="rpcSignature" type="xs:string" /> </xs:schema> \ No newline at end of file --- 14,49 ---- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/ws/desc/wsdl/component-rpc" + xmlns:cmbase="http://www.w3.org/2002/ws/desc/wsdl/component-base" targetNamespace="http://www.w3.org/2002/ws/desc/wsdl/component-rpc" elementFormDefault="qualified"> ! <xs:import ! namespace="http://www.w3.org/2002/ws/desc/wsdl/component-base" ! schemaLocation="wsdlcm-base.xsd" /> ! ! <xs:element name="rpcSignature" type="Argument" /> ! ! <xs:simpleType name="Direction"> ! <xs:restriction base="xs:token"> ! <xs:enumeration value="#in" /> ! <xs:enumeration value="#out" /> ! <xs:enumeration value="#inout" /> ! <xs:enumeration value="#return" /> ! </xs:restriction> ! </xs:simpleType> ! ! <xs:complexType name="Argument"> ! <xs:sequence> ! <xs:element name="name" type="cmbase:QName" /> ! <xs:element name="direction" type="Direction" /> ! </xs:sequence> ! </xs:complexType> ! ! <xs:complexType name="Signature"> ! <xs:sequence> ! <xs:element name="argument" type="Argument" minOccurs="0" ! maxOccurs="unbounded" /> ! </xs:sequence> ! </xs:complexType> </xs:schema> \ No newline at end of file
Received on Thursday, 11 May 2006 01:45:11 UTC