Reputation: 4015
I want to create a quick test web service for a demo. Is there a quick free way to just quickly and easily make a web service that returns one string back when a call is made?
I'm looking free, easy, works out of the box type of thing with minimum setup ... preferably don't want to use any kind of Microsoft tools.
Upvotes: 1
Views: 183
Reputation: 56779
JSFiddle has a free web service tailored specifically for testing web service calls. The response given back is based on the parameters passed in.
Upvotes: 2
Reputation: 88438
There is a simple HTTP server that returns a response with "Hello, world" on the node.js home page
Upvotes: 2