What are REST web services?
Possible Duplicates:
SOAP or REST
Why do we need RESTful Web Services?
Hi folks,
lately, the REST web services is mentioned a lot. What is the reason for using it over other methods? Are they used in WCF & how do we implement one?
TIA
REST is an oft misunderstood term. The precise definition can of course be found in Fielding's dissertation, and is attempted explained in the Wikipedia entry. In short it's an architectural style, and has nothing technically to do with HTTP or the web. HTTP and a lot of the web, however enable and follow the REST architectural style.
But in truth the term REST has been watered down and it now is almost synonymous with HTTP based API of some sort.
When developers talk about implementing or using a REST API they usually mean something along the lines of documenting URI templates for all their resources, and use GET to retrieve something, PUT to modify something, DELETE to delete something and POST to do anything else (like create or accept or modify something), like the Twitter API to update ones status or StackOverflow's own API or Facebook's API.
These APIs typically
All these are good, and required of REST architectures, but alone aren't enough to follow the academic REST
I think this is a fitting description for REST as it is now. There are a few people who understand the difference between Corporate REST and Academic REST but their numbers are dwindling.
But that's the topic of another question, just search for HATEOAS.
本教程将帮助您开始http://www.xfront.com/REST-Web-Services.html
http://en.wikipedia.org/wiki/Representational_State_Transfer#Key_goals
链接地址: http://www.djcxy.com/p/12332.html上一篇: JavaScript:学习如何“使用RESTful API”
下一篇: 什么是REST Web服务?