100

Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)?

So far, it appears to me that Google Web API may be the only option.

Otherwise, how can one test a SOAP 1.2 compliant client library?

bhadra
  • 12,887
  • 10
  • 54
  • 47
  • Hey can i get any sample url of POST type web serivce ? – Vikas Gupta Nov 08 '12 at 13:54
  • This site have some working soap web services [https://jansipke.nl/examples-of-public-soap-web-services/](https://jansipke.nl/examples-of-public-soap-web-services/) – Arosha De Silva Apr 05 '18 at 10:51
  • 1
    As of 2018: http://www.dneonline.com/calculator.asmx Very simple SOAP Calculator. The WSDL: http://www.dneonline.com/calculator.asmx?WSDL – Edenshaw Apr 26 '18 at 15:10

1 Answers1

73

There is a bunch on here:

http://www.webservicex.net/WS/wscatlist.aspx

Just google for "Free WebService" or "Open WebService" and you'll find tons of open SOAP endpoints.

Remember, you can get a WSDL from any ASMX endpoint by adding ?WSDL to the url.

FlySwat
  • 172,459
  • 74
  • 246
  • 311