Reputation:
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
Reputation: 2222
you can try this, its good
http://www.eclipse.org/webtools/community/tutorials/BottomUpAxis2WebService/bu_tutorial.html
Upvotes: 0
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
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