- From: Arthur Ryman via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 29 Mar 2005 23:09:06 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/test-suite/documents/good/ImportedWSDL-1G In directory hutz:/tmp/cvs-serv20323/documents/good/ImportedWSDL-1G Added Files: updateDetails.wsdl retrieveDetails.wsdl Log Message: Added ImportWSDL-1G test case. --- NEW FILE: retrieveDetails.wsdl --- <?xml version="1.0" encoding="utf-8" ?> <description xmlns="http://www.w3.org/2004/08/wsdl" targetNamespace="http://greath.example.com/2004/services/retrieveDetails" xmlns:tns="http://greath.example.com/2004/services/retrieveDetails" xmlns:wdetails="http://greath.example.com/2004/schemas/reservationDetails" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2004/08/wsdl ../../../xmlcatalog/wsdl/wsdl20.xsd http://www.w3.org/2001/XMLSchema ../../../xmlcatalog/xsd/XMLSchema.xsd"> <documentation> This document describes the GreatH Retrieve Reservation Details Web service. </documentation> <types> <xs:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://greath.example.com/2004/schemas/reservationDetails"> <xs:element name="reservationDetails"> <xs:complexType> <xs:sequence> <xs:element name="confirmationNumber" type="string" /> <xs:element name="checkInDate" type="date" /> <xs:element name="checkOutDate" type="date" /> <xs:element name="roomType" type="string" /> <xs:element name="smoking" type="boolean" /> </xs:sequence> </xs:complexType> </xs:element> </xs:schema> </types> <interface name="retrieveDetailsInterface"> <operation name="retrieve" pattern="http://www.w3.org/2004/03/wsdl/in-out"> <input messageLabel="In" element="#none" /> <output messageLabel="Out" element="wdetails:reservationDetails" /> </operation> </interface> </description> --- NEW FILE: updateDetails.wsdl --- <?xml version="1.0" encoding="utf-8" ?> <description xmlns="http://www.w3.org/2004/08/wsdl" targetNamespace="http://greath.example.com/2004/services/updateDetails" xmlns:tns="http://greath.example.com/2004/services/updateetails" xmlns:retrieve="http://greath.example.com/2004/services/retrieveDetails" xmlns:details="http://greath.example.com/2004/schemas/reservationDetails" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2004/08/wsdl ../../../xmlcatalog/wsdl/wsdl20.xsd http://www.w3.org/2001/XMLSchema ../../../xmlcatalog/xsd/XMLSchema.xsd"> <documentation> This document describes the GreatH Update Reservation Details Web service. </documentation> <import namespace="http://greath.example.com/2004/services/retrieveDetails" location="retrieveDetails.wsdl" /> <types> <xs:import namespace="http://greath.example.com/2004/schemas/reservationDetails" /> </types> <interface name="updateDetailsInterface" extends="retrieve:retrieveDetailsInterface"> <operation name="update" pattern="http://www.w3.org/2004/03/wsdl/in-out"> <input messageLabel="In" element="details:reservationDetails" /> <output messageLabel="Out" element="details:reservationDetails" /> </operation> </interface> </description>
Received on Tuesday, 29 March 2005 23:09:10 UTC