<?xml version="1.0" encoding="UTF-8"?>
<definitions name="Service"
 targetNamespace="http://localhost:80/Service.wsdl"
 xmlns:tns="http://localhost:80/Service.wsdl"
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:metex="http://tempuri.org/metex.xsd"
 xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
 xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
 xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
 xmlns="http://schemas.xmlsoap.org/wsdl/">

<types>

 <schema targetNamespace="http://tempuri.org/metex.xsd"
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:metex="http://tempuri.org/metex.xsd"
  xmlns="http://www.w3.org/2001/XMLSchema"
  elementFormDefault="unqualified"
  attributeFormDefault="unqualified">
  <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  <simpleType name="type-enum">
   <restriction base="xsd:string">
    <enumeration value="METEX-ANY"/>
    <enumeration value="METEX-INTEGER"/>
    <enumeration value="METEX-REAL"/>
    <enumeration value="METEX-STRING"/>
    <enumeration value="METEX-BINARY"/>
   </restriction>
  </simpleType>
  <complexType name="any">
   <sequence>
   </sequence>
  </complexType>
  <complexType name="integer">
   <complexContent>
    <extension base="metex:any">
     <sequence>
     <element name="value" type="xsd:int" minOccurs="1" maxOccurs="1"/>
     </sequence>
    </extension>
   </complexContent>
  </complexType>
  <complexType name="real">
   <complexContent>
    <extension base="metex:any">
     <sequence>
     <element name="value" type="xsd:double" minOccurs="1" maxOccurs="1"/>
     </sequence>
    </extension>
   </complexContent>
  </complexType>
  <complexType name="string">
   <complexContent>
    <extension base="metex:any">
     <sequence>
     <element name="item" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
     </sequence>
    </extension>
   </complexContent>
  </complexType>
  <complexType name="binary">
   <complexContent>
    <extension base="metex:any">
     <sequence>
     <element name="item" type="xsd:unsignedByte" minOccurs="0" maxOccurs="unbounded"/>
     <element name="msg" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
     </sequence>
    </extension>
   </complexContent>
  </complexType>
  <complexType name="params">
   <sequence>
     <element name="item" type="metex:any" minOccurs="0" maxOccurs="unbounded" nillable="true"/>
   </sequence>
  </complexType>
  <!-- operation request element -->
  <element name="Request">
   <complexType>
    <sequence>
     <element name="service" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
     <element name="params" type="metex:params" minOccurs="0" maxOccurs="1" nillable="true"/>
    </sequence>
   </complexType>
  </element>
  <!-- operation response element -->
  <element name="output">
   <complexType>
    <sequence>
     <element name="item" type="metex:any" minOccurs="0" maxOccurs="1" nillable="true"/>
    </sequence>
   </complexType>
  </element>
 </schema>

</types>

<message name="Request">
 <part name="parameters" element="metex:Request"/>
</message>

<message name="output">
 <part name="parameters" element="metex:output"/>
</message>

<portType name="ServicePortType">
 <operation name="Request">
  <documentation>Service definition of function metex__Request</documentation>
  <input message="tns:Request"/>
  <output message="tns:output"/>
 </operation>
</portType>

<binding name="Service" type="tns:ServicePortType">
 <SOAP:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
 <operation name="Request">
  <SOAP:operation soapAction=""/>
  <input>
     <SOAP:body parts="parameters" use="literal"/>
  </input>
  <output>
     <SOAP:body parts="parameters" use="literal"/>
  </output>
 </operation>
</binding>

<service name="Service">
 <documentation>gSOAP 2.7.8c generated service definition</documentation>
 <port name="Service" binding="tns:Service">
  <SOAP:address location="http://localhost:80"/>
 </port>
</service>

</definitions>
