view test/javax/xml/jaxp/unittest/stream/XMLStreamReaderTest/Hello.wsdl.data @ 779:2b61bfcaa586

8132660: Change jaxp unit test package name to be different with jaxp api Reviewed-by: joehw Contributed-by: frank.yuan@oracle.com
author joehw
date Mon, 10 Aug 2015 09:52:32 -0700
parents test/javax/xml/jaxp/unittest/javax/xml/stream/XMLStreamReaderTest/Hello.wsdl.data@29ba77ad2a87
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-16"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:tns="http://www.example.org/Hello/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Hello"
	targetNamespace="http://www.example.org/Hello/">
	
	<wsdl:message name="SayHelloResponse">
		<wsdl:part name="SayHelloResponse" type="xsd:string" />
	</wsdl:message>
	<wsdl:message name="SayHelloRequest">
		<wsdl:part name="SayHelloRequest" type="xsd:string" />
	</wsdl:message>
	<wsdl:portType name="Hello">
		<wsdl:operation name="SayHello">
			<wsdl:input message="tns:SayHelloRequest" />
			<wsdl:output message="tns:SayHelloResponse" />
		</wsdl:operation>
	</wsdl:portType>
	
	<wsdl:binding name="HelloSOAP" type="tns:Hello">
		<soap:binding style="rpc"
			transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="SayHello">
			<soap:operation
				soapAction="http://www.example.org/Hello/SayHello" />
			<wsdl:input>
				<soap:body namespace="http://www.example.org/Hello/"
					parts="SayHelloRequest" use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body namespace="http://www.example.org/Hello/"
					parts="SayHelloResponse" use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="Hello">
		<wsdl:port binding="tns:HelloSOAP" name="HelloSOAP">
			<soap:address location="http://www.example.org/" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>