veledrom 32 Master Poster

Hi,

Can anyone help me converting this wsdl 1.1 file into 2.0.

Thanks

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

<definitions name="Catalog" 
	
	targetNamespace="http://localhost/apache/soap6/catalog.wsdl"
	xmlns:tns="http://localhost/apache/soap6/catalog.wsdl" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns="http://schemas.xmlsoap.org/wsdl/"> 

<message name="getCatalogRequest">
	<part name="Symbol" type="xsd:string"/>
</message> 
<message name="getCatalogResponse">
	<part name="Result" type="xsd:string"/>
</message> 

<portType name="CatalogPortType">
	<operation name="getMyCatalog">
		<input message="tns:getCatalogRequest"/>
		<output message="tns:getCatalogResponse"/>
	</operation>
</portType> 

<binding name="CatalogBinding" type="tns:CatalogPortType">
	<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
	<operation name="getMyCatalog">
		<soap:operation soapAction="urn:local#getMyCatalog"/>
		<input>
			<soap:body use="encoded" namespace="urn:local" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
		</input>
		<output>
			<soap:body use="encoded" namespace="urn:local" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
		</output>
	</operation>
</binding> 

<service name="CatalogService">
	<port name="CatalogPort" binding="CatalogBinding">
		<soap:address location="http://localhost/apache/soap6/server.php"/>
	</port>
</service>

</definitions>