Sms Panel Web Service

To access via a SOAP client use wsdl.php?WSDL

Available Functions:

Function: sendSMS

Send SMS via Server

WSDL output:

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

<wsdl:definitions
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:s="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.ankaratoplusms.com"
    xmlns:tns="http://www.ankaratoplusms.com/"
    name="SmsPanelWebService"
>

<wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://www.ankaratoplusms.com/">
        <s:element name="sendSMSRequest">
            <s:complexType><s:sequence>
                <s:element minOccurs="1" maxOccurs="1" name="username" type="s:string" />
                <s:element minOccurs="1" maxOccurs="1" name="password" type="s:string" />
                <s:element minOccurs="1" maxOccurs="1" name="originator" type="s:string" />
                <s:element minOccurs="1" maxOccurs="1" name="text" type="s:string" />
                <s:element minOccurs="1" maxOccurs="1" name="receivers" type="s:string" />
            </s:sequence></s:complexType>
        </s:element>
        <s:element name="sendSMSResponse">
            <s:complexType><s:sequence>
                <s:element minOccurs="1" maxOccurs="1" name="result" type="s:int" />
            </s:sequence></s:complexType>
        </s:element>
    </s:schema>
</wsdl:types>

<wsdl:message name="sendSMSRequest">
    <wsdl:part name="parameters" element="tns:sendSMSRequest" />
</wsdl:message>
<wsdl:message name="sendSMSResponse">
    <wsdl:part name="parameters" element="tns:sendSMSResponse" />
</wsdl:message>

<wsdl:portType name="sendSMSPortType">
    <wsdl:operation name="sendSMS">
        <wsdl:input message="tns:sendSMSRequest" />
        <wsdl:output message="tns:sendSMSResponse" />
    </wsdl:operation>
</wsdl:portType>

<wsdl:binding name="sendSMSBinding" type="tns:sendSMSPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="sendSMS">
        <soap:operation soapAction="http://sms.ankaratoplusms.com/soapService/soap-service.php#sendSMS" style="document" />
        <wsdl:input><soap:body use="literal" /></wsdl:input>
        <wsdl:output><soap:body use="literal" /></wsdl:output>
        <wsdl:documentation>Send SMS via Server</wsdl:documentation>
    </wsdl:operation>
</wsdl:binding>

<wsdl:service name="SmsPanelWebService">
    <wsdl:port name="sendSMSPort" binding="tns:sendSMSBinding">
        <soap:address location="http://sms.ankaratoplusms.com/soapService/soap-service.php" />
    </wsdl:port>
</wsdl:service>

</wsdl:definitions>