<?xml version="1.0" encoding="UTF-8"?>
<!--=========== namespaces ==========-->
<wsdl:definitions targetNamespace="http://stock.ipt.ch" 
	xmlns="http://schemas.xmlsoap.org/wsdl/" 
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
	xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" 
	xmlns:impl="http://stock.ipt.ch" 
	xmlns:intf="http://stock.ipt.ch" 
	xmlns:apachesoap="http://xml.apache.org/xml-soap" 
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<!--=========== request message ===========-->
	<wsdl:types/>
	<wsdl:message name="getQuoteRequest">
		<wsdl:part name="in0" type="xsd:string"/>
	</wsdl:message>
	<!--=========== response message ===========-->
	<wsdl:message name="getQuoteResponse">
		<wsdl:part name="getQuoteReturn" type="xsd:float"/>
	</wsdl:message>
	<!--=========== port with methods ===========-->
	<wsdl:portType name="StockQuote">
		<wsdl:operation name="getQuote" parameterOrder="in0">
			<wsdl:input message="intf:getQuoteRequest" name="getQuoteRequest"/>
			<wsdl:output message="intf:getQuoteResponse" name="getQuoteResponse"/>
		</wsdl:operation>
	</wsdl:portType>
	<!--=========== binding to a specific protocol ===========-->
	<wsdl:binding name="StockQuoteService" type="intf:StockQuote">
		<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
		<wsdl:operation name="getQuote">
			<wsdlsoap:operation soapAction=""/>
			<wsdl:input name="getQuoteRequest">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://stock.ipt.ch" use="encoded"/>
			</wsdl:input>
			<wsdl:output name="getQuoteResponse">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://stock.ipt.ch" use="encoded"/>
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<!--=========== location of the implementation ===========-->
	<wsdl:service name="StockQuoteService">
		<wsdl:port binding="intf:StockQuoteService" name="StockQuoteService">
			<wsdlsoap:address location="http://snoopy.ipt.ch:8080/axis/services/StockQuoteService"/>
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>