<?xml version="1.0" encoding="UTF-8"?>
<definitions name="interop2"
 xmlns="http://schemas.xmlsoap.org/wsdl/"
 targetNamespace="http://soapinterop.org/"
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
 xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:tns="http://soapinterop.org/"
 xmlns:ns="http://soapinterop.org/xsd">

<types>
 <schema
  xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://soapinterop.org/xsd"
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:ns="http://soapinterop.org/xsd">

  <complexType name="SOAPStruct">
   <all>
    <element name="varString" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
    <element name="varInt" type="xsd:int" minOccurs="0" maxOccurs="1" nillable="true"/>
    <element name="varFloat" type="xsd:float" minOccurs="0" maxOccurs="1" nillable="true"/>
   </all>
   <anyAttribute namespace="##other"/>
  </complexType>

  <complexType name="ArrayOfstring" base="SOAP:Array">
   <complexContent>
    <restriction base="SOAP-ENC:Array">
     <attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="xsd:string[]"/>
   </restriction>
   </complexContent>
  </complexType>

  <complexType name="ArrayOfint" base="SOAP:Array">
   <complexContent>
    <restriction base="SOAP-ENC:Array">
     <attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="xsd:int[]"/>
   </restriction>
   </complexContent>
  </complexType>

  <complexType name="ArrayOffloat" base="SOAP:Array">
   <complexContent>
    <restriction base="SOAP-ENC:Array">
     <attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="xsd:float[]"/>
   </restriction>
   </complexContent>
  </complexType>

  <complexType name="echoStructResponse">
   <all>
    <element name="return" type="ns:SOAPStruct" minOccurs="0" maxOccurs="1"/>
   </all>
   <anyAttribute namespace="##other"/>
  </complexType>

  <complexType name="ArrayOfSOAPStruct" base="SOAP:Array">
   <complexContent>
    <restriction base="SOAP-ENC:Array">
     <attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="ns:SOAPStruct[]"/>
   </restriction>
   </complexContent>
  </complexType>

  <complexType name="echoVoidResponse">
   <all>
   </all>
   <anyAttribute namespace="##other"/>
  </complexType>

 </schema>
</types>

<message name="echoStringRequest">
 <part name="inputString" type="xsd:string"/>
</message>

<message name="echoStringResponse">
 <part name="return" type="xsd:string"/>
</message>

<message name="echoStringArrayRequest">
 <part name="inputStringArray" type="ns:ArrayOfstring"/>
</message>

<message name="echoStringArrayResponse">
 <part name="return" type="ns:ArrayOfstring"/>
</message>

<message name="echoIntegerRequest">
 <part name="inputInteger" type="xsd:int"/>
</message>

<message name="echoIntegerResponse">
 <part name="return" type="xsd:int"/>
</message>

<message name="echoIntegerArrayRequest">
 <part name="inputIntegerArray" type="ns:ArrayOfint"/>
</message>

<message name="echoIntegerArrayResponse">
 <part name="return" type="ns:ArrayOfint"/>
</message>

<message name="echoFloatRequest">
 <part name="inputFloat" type="xsd:float"/>
</message>

<message name="echoFloatResponse">
 <part name="return" type="xsd:float"/>
</message>

<message name="echoFloatArrayRequest">
 <part name="inputFloatArray" type="ns:ArrayOffloat"/>
</message>

<message name="echoFloatArrayResponse">
 <part name="return" type="ns:ArrayOffloat"/>
</message>

<message name="echoStructRequest">
 <part name="inputStruct" type="ns:SOAPStruct"/>
</message>

<message name="echoStructResponse">
 <part name="return" type="ns:SOAPStruct"/>
</message>

<message name="echoStructArrayRequest">
 <part name="inputStructArray" type="ns:ArrayOfSOAPStruct"/>
</message>

<message name="echoStructArrayResponse">
 <part name="return" type="ns:ArrayOfSOAPStruct"/>
</message>

<message name="echoVoidRequest">
</message>

<message name="echoVoidResponse">
</message>

<message name="echoBase64Request">
 <part name="inputBase64" type="xsd:base64Binary"/>
</message>

<message name="echoBase64Response">
 <part name="return" type="xsd:base64Binary"/>
</message>

<message name="echoDateRequest">
 <part name="inputDate" type="xsd:dateTime"/>
</message>

<message name="echoDateResponse">
 <part name="return" type="xsd:dateTime"/>
</message>

<message name="echoHexBinaryRequest">
 <part name="inputHexBinary" type="xsd:hexBinary"/>
</message>

<message name="echoHexBinaryResponse">
 <part name="return" type="xsd:hexBinary"/>
</message>

<message name="echoDecimalRequest">
 <part name="inputDecimal" type="xsd:decimal"/>
</message>

<message name="echoDecimalResponse">
 <part name="return" type="xsd:decimal"/>
</message>

<message name="echoBooleanRequest">
 <part name="inputBoolean" type="xsd:boolean"/>
</message>

<message name="echoBooleanResponse">
 <part name="return" type="xsd:boolean"/>
</message>

<portType name="interop2PortType">
 <documentation>Service definition of function ns__echoString</documentation>
 <operation name="echoString">
  <input message="tns:echoStringRequest"/>
  <output message="tns:echoStringResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoStringArray</documentation>
 <operation name="echoStringArray">
  <input message="tns:echoStringArrayRequest"/>
  <output message="tns:echoStringArrayResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoInteger</documentation>
 <operation name="echoInteger">
  <input message="tns:echoIntegerRequest"/>
  <output message="tns:echoIntegerResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoIntegerArray</documentation>
 <operation name="echoIntegerArray">
  <input message="tns:echoIntegerArrayRequest"/>
  <output message="tns:echoIntegerArrayResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoFloat</documentation>
 <operation name="echoFloat">
  <input message="tns:echoFloatRequest"/>
  <output message="tns:echoFloatResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoFloatArray</documentation>
 <operation name="echoFloatArray">
  <input message="tns:echoFloatArrayRequest"/>
  <output message="tns:echoFloatArrayResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoStruct</documentation>
 <operation name="echoStruct">
  <input message="tns:echoStructRequest"/>
  <output message="tns:echoStructResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoStructArray</documentation>
 <operation name="echoStructArray">
  <input message="tns:echoStructArrayRequest"/>
  <output message="tns:echoStructArrayResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoVoid</documentation>
 <operation name="echoVoid">
  <input message="tns:echoVoidRequest"/>
  <output message="tns:echoVoidResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoBase64</documentation>
 <operation name="echoBase64">
  <input message="tns:echoBase64Request"/>
  <output message="tns:echoBase64Response"/>
 </operation>
 <documentation>Service definition of function ns__echoDate</documentation>
 <operation name="echoDate">
  <input message="tns:echoDateRequest"/>
  <output message="tns:echoDateResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoHexBinary</documentation>
 <operation name="echoHexBinary">
  <input message="tns:echoHexBinaryRequest"/>
  <output message="tns:echoHexBinaryResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoDecimal</documentation>
 <operation name="echoDecimal">
  <input message="tns:echoDecimalRequest"/>
  <output message="tns:echoDecimalResponse"/>
 </operation>
 <documentation>Service definition of function ns__echoBoolean</documentation>
 <operation name="echoBoolean">
  <input message="tns:echoBooleanRequest"/>
  <output message="tns:echoBooleanResponse"/>
 </operation>
</portType>

<binding name="interop2Binding" type="tns:interop2PortType">
 <SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
 <operation name="echoString">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoStringArray">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoInteger">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoIntegerArray">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoFloat">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoFloatArray">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoStruct">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoStructArray">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoVoid">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoBase64">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoDate">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoHexBinary">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoDecimal">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
 <operation name="echoBoolean">
  <SOAP:operation soapAction="http://soapinterop.org/"/>
  <input>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </input>
  <output>
   <SOAP:body use="encoded" namespace="http://soapinterop.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  </output>
 </operation>
</binding>

<service name="interop2">
 <documentation>gSOAP Stub and Skeleton Compiler for C and C++ 1.2.3 generated service definition</documentation>
 <port name="interop2Port" binding="tns:interop2Binding">
  <SOAP:address location="http://websrv.cs.fsu.edu/~engelen/interop2.cgi"/>
 </port>
</service>

</definitions>
