<?
xml version ="1.0" encoding ="UTF-8" ?>
<definitions name="SoapWaWi"
targetNamespace="http:
//xxx/module/soapapi"
xmlns:tns=" http:
//xxx/module/soapapit"
xmlns:
soap="http:
//schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http:
//www.w3.org/2001/XMLSchema"
xmlns:soapenc="http:
//schemas.xmlsoap.org/soap/encoding/"
xmlns:
wsdl="http:
//schemas.xmlsoap.org/wsdl/"
xmlns="http:
//schemas.xmlsoap.org/wsdl/">
<
wsdl:types>
<xsd:schema targetNamespace="http:
//schema.example.com">
<xsd:complexType name="Array">
<xsd:complexContent>
<xsd:restriction base="
SOAP-ENC:Array">
<xsd:attribute ref="
SOAP-ENC:arrayType"
wsdl:arrayType="xsd:
string[]" />
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>
</
wsdl:types>
<
message name="getDataFromTableIn">
<part name="apikey" type="xsd:string"/>
<part name="table" type="xsd:string"/>
<part name="fields" type="xsd:string"/>
<part name="startlimit" type="xsd:int"/>
<part name="endlimit" type="xsd:int"/>
<part name="operator" type="xsd:int"/>
<part name="conditions" type="xsd:string"/>
<part name="order" type="xsd:string"/>
<part name="group" type="xsd:string"/>
</
message>
<
message name="getDataFromTableOut">
<part name='
results' type='
xsd:Array'/>
</
message>
<portType name="getDataFromTable_PortType">
<operation name="getDataFromTable">
<input message="tns:getDataFromTableIn"/>
<output message="tns:getDataFromTableOut"/>
</operation>
</portType>
<binding name="getDataFromTableBinding" type="tns:getDataFromTable_PortType">
<
soap:binding style="rpc" transport="http:
//schemas.xmlsoap.org/soap/http"/>
<operation name="getDataFromTable">
<
soap:operation soapAction="getDataFromTable"/>
<input>
<
soap:body
encodingStyle="http:
//schemas.xmlsoap.org/soap/encoding/"
namespace="urn:thegeek-getpostsservice"
use="encoded"/>
</input>
<output>
<
soap:body
encodingStyle="http:
//schemas.xmlsoap.org/soap/encoding/"
namespace="urn:thegeek-getpostsservice"
use="encoded"/>
</output>
</operation>
</binding>
<service name="SoapWaWiService">
<port name="SelectSingle" binding="getDataFromTableBinding">
<
soap:address location="http:
//xxx/module/soapapi/soap.php"/>
</port>
</service>
</definitions>