<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/"
	xmlns:tns="http://www.example.org/SayHi/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SayHi"
	targetNamespace="http://www.example.org/SayHi/">
	<wsdl:types>
		<xsd:schema targetNamespace="http://www.example.org/SayHi/">
			<xsd:element name="HiResponse">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="greeting"
							type="xsd:string">
						</xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="Hi">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="name" type="xsd:string"></xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:schema>
	</wsdl:types>	<wsdl:message name="HiResponse">
		<wsdl:part name="HiResponse" type="xsd:string"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="HiRequest">
		<wsdl:part name="HiRequest" element="tns:Hi"></wsdl:part>
	</wsdl:message>
	<wsdl:portType name="SayHi">		<wsdl:operation name="Hi">
			<wsdl:input message="tns:HiRequest"></wsdl:input>
			<wsdl:output message="tns:HiResponse"></wsdl:output>
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="SayHiSOAP" type="tns:SayHi">		<soap:binding style="document"
			transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="Hi">
			<soap:operation
				soapAction="http://www.example.org/SayHi/Hi" />
			<wsdl:input>
				<soap:body use="literal" parts=" HiRequest" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" parts=" HiResponse" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="SayHi">
		<wsdl:port binding="tns:SayHiSOAP" name="SayHiSOAP">
			<soap:address location="http://www.example.org/" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>
