Looking for clear and concise explanations of this concept.
|
13
|
|||
|
|
|
A RESTful application is an application that exposes its state and functionality as a set of resources that the clients can manipulate and conforms to a certain set of principles:
The Wikipedia article pointed by Tim Scott gives more details about the origin of REST, detailed principles, examples and so on. |
||||||||||||
|
|
|
Ryan Tomayko wrote a good article called How I Explained REST to My Wife that I always point people to as a good introduction to the concept. |
||
|
|
Frankly, the answer depends on context. REST and RESTful have meanings depending on what language or framework you're using or what you're trying to accomplish. Since you've tagged your question under "web services" I'll answer in the context of RESTful web services, which is still a broad category. RESTful web services can mean anything from a strict REST interpretation, where all actions are done in a strict "RESTful" manner, to a protocol that is plain XML, meaning its not SOAP or XMLRPC. In the latter case, this is a misnomer: such a REST protocol is really a "plain old XML" (or "POX") protocol. While REST protocols usually use XML and as such are POX protocols, this doesn't necessarily have to be the case, and the inverse is not true (a just because a protocol uses XML doesn't make it RESTful). Without further ado, a truly RESTful API consists of actions taken on objects, represented by the HTTP method used and the URL of that object. The actions are about the data and not about what the method does. For example, CRUD actions (create, read, update, and delete) can map to a certain set of URLs and actions. Lets say you are interacting with a photo API.
Other actions might be implemented, like the ability to copy photos via a COPY request. In this way, the HTTP method you're using maps directly to the intent of your call, instead of sending the action you wish to take as part of the API. To contrast, a non-RESTful API might use many more URLs and only use the GET and POST actions. So, in this example, you might see:
You'll note how in this case the URLs are different and the methods are chosen only out of technical necessity: to send data, you must use a POST, while all other requests use GET. |
||||||||||
|
|
|
Just a few points:
If you don't spend most of your time crafting your document format, you're probably not doing REST. |
||
|
|
|
|
The best explanation I found is in this REST tutorial. |
||
|
|
|
|
here is A Brief Introduction to REST |
||
|
|
|
|
It means using names to identify both commands and parameters. Instead of names being mere handles or monikers, the name itself contains information. Specifically, information about what is being requested, parameters for the request, etc.. Names are not "roots" but rather actions plus input data. |
||
|
|
|
|
I've learned the most from reading the articles published on InfoQ.com: http://www.infoq.com/rest and the RESTful Web Services book (http://oreilly.com/catalog/9780596529260/). ./alex Disclaimer: I am associated with InfoQ.com, but this recommendation is based on my own learning experience. |
||
|
|
|
|
RESTful - Being able to find and fix that #@$%# error that you can't fugure out at 3am so you can go to bed and get at least 3hours of sleep before you find another problem ];o) J/K (sort of) |
||
|
|
|
|
REST by way of an example:
The server responds:
In the future, you can then retrieve the user information:
The server responds:
To update:
|
||
|
|
|
|
|
||
|
