| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 
 | <?xml version ='1.0' encoding ='UTF-8' ?> 
<definitions name='sendsmswsdl' 
  xmlns:tns='https://uneCertaineUrl/server2wsdl.wsdl' 
  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/'> 
 
<message name='sendsmsAnfrage'> 
  <part name='phoneno' type='xsd:string'/>
  <part name='message' type='xsd:string'/>
</message> 
<message name='sendsmsAntwort'> 
  <part name='Result' type='xsd:string'/> 
</message> 
 
<portType name='sendsmsPortType'> 
  <operation name='sendsms'> 
    <input message='tns:sendsmsAnfrage'/> 
    <output message='tns:sendsmsAntwort'/> 
  </operation> 
</portType> 
 
<binding name='sendsmsBinding' type='tns:sendsmsPortType'> 
  <soap:binding style='rpc' 
    transport='http://schemas.xmlsoap.org/soap/http'/> 
  <operation name='sendsms'> 
    <soap:operation soapAction='urn:xmethodssendsms#sendsms'/> 
    <input> 
      <soap:body use='encoded' namespace='urn:xmethodssendsms' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </input> 
    <output> 
      <soap:body use='encoded' namespace='urn:xmethodssendsms' 
        encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/> 
    </output> 
  </operation> 
</binding> 
 
<service name='sendsmsService'> 
  <port name='sendsmsPort' binding='sendsmsBinding'> 
    <soap:address location='https://uneCertaineUrl/serversendsms.php'/> 
  </port> 
</service> 
</definitions> | 
Partager