I have a working web service at http://localhost/RestService/GetTransactionByStatus/1. When I run that URL on my browser I\'m getting the correct JSON-formatted response:
Update 2019:
For any host - localhost or some server, you can directly get data by just mentioning rest api path, so that your code can be used on any server
localhost
server
rest api path
d3.json("/RestService/GetTransactionByStatus/" + id, function(error, data) { console.log(data); });