<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 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://soap.managerzone.com/" targetNamespace="http://soap.managerzone.com/">

	<wsdl:types>
		<xs:schema targetNamespace="http://schema.example.com"/>
	</wsdl:types>

        <message name="GetRequest">
                <part name="mtp_tool_name" type="xs:string"/>
                <part name="mtp_tool_guid" type="xs:string"/>
                <part name="mtp_user_name" type="xs:string"/>
                <part name="mtp_user_toolpassword" type="xs:string"/>
                <part name="mtp_timestamp" type="xs:string"/>
                <part name="sport" type="xs:string"/>
                <part name="request" type="xs:string"/>
        </message>

        <message name="GetRespons">
                <part name="UserReturn" type="xs:string"/>
        </message>

        <wsdl:portType name="MtcpServiceGet">
               <wsdl:operation name="Get">
                        <wsdl:input message="y:GetRequest"/>
                        <wsdl:output message="y:GetRespons"/>
               </wsdl:operation>
        </wsdl:portType>

        <binding name="MtcpServiceGet" type="y:MtcpServiceGet">
               <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
               <wsdl:operation name="Get">
                       <soap:operation soapAction="urn:#Get"/>
                       <wsdl:input>
                               <soap:body use="encoded" namespace="http://schema.example.com" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                       </wsdl:input>
                       <wsdl:output>
                               <soap:body use="encoded" namespace="http://schema.example.com" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                       </wsdl:output>
              </wsdl:operation>
        </binding>

	<wsdl:service name="MtcpServiceMzManager">
		<wsdl:port name="MtcpServiceGet" binding="y:MtcpServiceGet">
			<soap:address location="http://managerzone.com/xml/SoapServer.php"/>
		</wsdl:port>
	</wsdl:service>

</wsdl:definitions>

