Welcome to Web2Py SOAP webservice gateway

See all webservice operations

AddIntegers

Add two values

  • Location: http://www.web2py.com.ar/webservices/sample/call/soap
  • Namespace: http://www.web2py.com.ar/webservices/sample/call/soap
  • SoapAction: http://www.web2py.com.ar/webservices/sample/call/soap

Sample SOAP XML Request Message:

1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">


<soap:Body>
<AddIntegers xmlns="http://www.web2py.com.ar/webservices/sample/call/soap">
<a>
<!--int-->
</a>
<b>
<!--int-->
</b>
</AddIntegers>
</soap:Body>


</soap:Envelope>

Sample SOAP XML Response Message:

1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">


<soap:Body>
<AddIntegersResponse xmlns="http://www.web2py.com.ar/webservices/sample/call/soap">
<AddResult>
<!--int-->
</AddResult>
</AddIntegersResponse>
</soap:Body>


</soap:Envelope>