Vicky
Vicky

Reputation:

Web service example

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?

Upvotes: 2

Views: 4363

Answers (3)

cleg
cleg

Reputation: 5022

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.

Upvotes: 0

Ilya Kochetov
Ilya Kochetov

Reputation: 18443

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

Upvotes: 4

Related Questions