I have developed an rest enable wcf service by using the following link
Now I want to know is there any difference between rest enabled wcf service (or restful web service) & rest web service ? If there is any difference then what is that ? If there is difference the can you provide me any link (which represents steps visually as in above link) through which I can develop rest web service ?
I do not know what you mean about the “REST web service” but basically you can do RESTful web services in .NET in two ways:
1) WCF which you have done although in .NET 4.0 there is no need fo .svc file
2) Using ASP.NET MVC which is RESTful anyway and you have to retun JsonResult or XmlResult.