<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions 
	name="HelloService"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:tns="http://thomas-hoermann.de/ws/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	targetNamespace="http://thomas-hoermann.de/ws/">
	<wsdl:types>
		<xsd:schema targetNamespace="http://thomas-hoermann.de/ws/">
			<xsd:element name="authenticateRequest">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="username" type="xsd:string" />
						<xsd:element name="password" type="xsd:string" />
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="authenticateResponse" type="xsd:string"></xsd:element>
			<xsd:element name="getDataRequest">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="key" type="xsd:string" />
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="getDataResponse">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="data1" type="xsd:string" />
						<xsd:element name="data2" type="xsd:int" />
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:schema>
	</wsdl:types>
	<wsdl:message name="authenticateRequest">
		<wsdl:part element="tns:authenticateRequest" name="request" />
	</wsdl:message>
	<wsdl:message name="authenticateResponse">
		<wsdl:part element="tns:authenticateResponse" name="response" />
	</wsdl:message>
	<wsdl:message name="getDataRequest">
		<wsdl:part element="tns:getDataRequest" name="request" />
	</wsdl:message>
	<wsdl:message name="getDataResponse">
		<wsdl:part element="tns:getDataResponse" name="response" />
	</wsdl:message>
	<wsdl:portType name="HelloService">
		<wsdl:operation name="authenticate">
			<wsdl:input message="tns:authenticateRequest" />
			<wsdl:output message="tns:authenticateResponse" />
		</wsdl:operation>
		<wsdl:operation name="getData">
			<wsdl:input message="tns:getDataRequest" />
			<wsdl:output message="tns:getDataResponse" />
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="HelloServiceSOAP" type="tns:HelloService">
		<soap:binding style="document"
			transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="authenticate">
			<soap:operation
				soapAction="http://thomas-hoermann.de/ws/authenticate" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
		<wsdl:operation name="getData">
			<soap:operation
				soapAction="http://thomas-hoermann.de/ws/getData" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="HelloService">
		<wsdl:port binding="tns:HelloServiceSOAP"
			name="HelloServiceSOAP">
			<soap:address location="http://thomas-hoermann.de/ws/" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>