<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions name="TestService" 
	targetNamespace="https://xmlns.frank-rahn.de/ws/test/1.0"
	xmlns:tns="https://xmlns.frank-rahn.de/ws/test/1.0"
	xmlns:test="https://xmlns.frank-rahn.de/services/testservice/1.0"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	
	<wsdl:types>
		<xsd:schema elementFormDefault="qualified">
			<xsd:import namespace="https://xmlns.frank-rahn.de/services/testservice/1.0"
				schemaLocation="https://xmlns.frank-rahn.de/services/testservice/1.0" />
		</xsd:schema>
	</wsdl:types>
	
	<wsdl:message name="testRequest">
		<wsdl:part name="testRequest" element="test:testRequest" />
	</wsdl:message>
	<wsdl:message name="testResponse">
		<wsdl:part name="testRequest" element="test:testResponse" />
	</wsdl:message>

	<wsdl:portType name="TestService">
		<wsdl:operation name="test">
			<wsdl:input message="tns:testRequest" />
			<wsdl:output message="tns:testResponse" />
		</wsdl:operation>
	</wsdl:portType>
	
	<wsdl:binding name="TestServiceSoap" type="tns:TestService">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="test">
			<soap:operation soapAction="https://xmlns.frank-rahn.de/ws/test/1.0/test" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>

	<wsdl:service name="TestService">
		<wsdl:port binding="tns:TestServiceSoap" name="TestServiceSoap">
			<soap:address location="http://localhost:8080/test" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>