Welcome to Web2Py SOAP webservice gateway

See all webservice operations

Echo

Copy request->response (generic, any type)

  • 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.
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">


<soap:Body>
<Echo xmlns="http://www.web2py.com.ar/webservices/sample/call/soap">
<value/>
</Echo>
</soap:Body>


</soap:Envelope>

Sample SOAP XML Response Message:

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


<soap:Body>
<EchoResponse xmlns="http://www.web2py.com.ar/webservices/sample/call/soap">
<value/>
</EchoResponse>
</soap:Body>


</soap:Envelope>