<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:types="http://www.examplewebservice.com/types" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:y="http://www.examplewebservice.com" targetNamespace="http://www.examplewebservice.com">
	<types>
		<xs:schema xmlns:tns="http://www.examplewebservice.com/types" targetNamespace="http://www.examplewebservice.com/types">
			<xs:element name="conversionRequest">
				<xs:complexType>
						<xs:sequence>
							<xs:element name="fromCurrency" type="xs:string" />
							<xs:element name="toCurrency" type="xs:string" />
						    <xs:element name="amount" type="xs:float" />
						</xs:sequence>	
				</xs:complexType>
			</xs:element>
			<xs:element name="conversionResponse">
				<xs:complexType>
						<xs:sequence>
							   <xs:element name="amount" type="xs:float" />
						</xs:sequence>	
				</xs:complexType>
			</xs:element>
		</xs:schema>
	</types>
	<message name="conversionRequestMessage">
		<part name="part1" element="types:conversionRequest"/>
	</message>
	<message name="conversionResponseMessage">
		<part name="part1" element="types:conversionResponse"/>
	</message>
	<portType name="currencyConvert">
		<operation name="convert">
			<input message="y:conversionRequestMessage"/>
			<output message="y:conversionResponseMessage"/>
		</operation>
	</portType>
	<binding name="currencyConvertBinding" type="y:currencyConvert">
	   <soap:binding style="document" transport="http"></soap:binding>
	    <operation name="convert">
			 <input>
				 <soap:body use="literal"></soap:body>
			 </input>
			 <output>
			      <soap:body use="literal"></soap:body>
			 </output>
	    </operation>
	</binding>
	<service name="currencyConverterService">
	    <port binding="y:currencyConvertBinding" name="converterSoapPort">
				<soap:address location="http://localhost:8080/axis2/services/currencyConverterService"/>
	    </port>
	</service>
</definitions>
