tags:

views:

168

answers:

3

Can anyone point to live examples of SOAP or REST web services? How do you use or test an existing web service with a client?

+3  A: 

A SOAP webservice which converts the temperature Celsius to Fahrenheit and other way around http://www.w3schools.com/webservices/tempconvert.asmx

A description and source code is here http://www.w3schools.com/webservices/ws_example.asp

Ilya Kochetov
A: 

Here is nice collection of example web services. I usually use them for experiments http://www.webservicex.net/

And for WS debug - I generate wrapper with VS and write unit tests.

cleg