2002/ws/desc/test-suite/documents/good/SchemaLocationFragment-1G Details.xsd,NONE,1.1 Items.wsdl,NONE,1.1

Update of /sources/public/2002/ws/desc/test-suite/documents/good/SchemaLocationFragment-1G
In directory hutz:/tmp/cvs-serv11506/test-suite/documents/good/SchemaLocationFragment-1G

Added Files:
	Details.xsd Items.wsdl 
Log Message:
Added SchemaLocationFragment-1G

--- NEW FILE: Items.wsdl ---
<?xml version="1.0" encoding="utf-8" ?>
<description xmlns="http://www.w3.org/2005/05/wsdl"
	targetNamespace="http://greath.example.com/2004/services/retrieveDetails"
	xmlns:tns="http://greath.example.com/2004/services/retrieveDetails"
	xmlns:xs="http://www.w3.org/2001/XMLSchema"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.w3.org/2005/05/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 id="items"
			targetNamespace="http://greath.example.com/2004/schemas/reservationItems">

			<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:schema>

	</types>

</description>

--- NEW FILE: Details.xsd ---
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
	targetNamespace="http://greath.example.com/2004/schemas/reservationDetails"
	xmlns:items="http://greath.example.com/2004/schemas/reservationItems"
	xmlns:xs="http://www.w3.org/2001/XMLSchema"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.w3.org/2001/XMLSchema ../../../xmlcatalog/xsd/XMLSchema.xsd">

	<xs:import
		namespace="http://greath.example.com/2004/schemas/reservationItems"
		schemaLocation="Items.wsdl#items" />

	<xs:element name="reservationDetails">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="items:confirmationNumber" />
				<xs:element ref="items:checkInDate" />
				<xs:element ref="items:checkOutDate" />
				<xs:element ref="items:roomType" />
				<xs:element ref="items:smoking" />
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>

Received on Monday, 6 June 2005 18:53:34 UTC