Possible Duplicate:
What exactly is RESTful programming?
What are RESTful web services? What would be an example of it?
What is difference between the asmx web services and the WCF restful service?
What are RESTful web services? What would be an example of it? What is difference between the asmx web services and the WCF restful service? |
|||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can check out Roy Fielding's (the creator of the REST architectural style) wiki page here and then move on to his PhD dissertation here and finally for a quick example just take a look at the Twitter API. |
|||||
|
|
REST is a client-server architecture which (among other things) leverages the full capacity of the HTTP protocol. Some relevant points in REST:
|
|||
|
|
|
Check description of REST. Web services conforming to this principle are called RESTful. |
|||
|
|
|
A good example is Sharepoint 2010 which using REST makes things quite a bit simpler to communicate to Sharepoint through the web services. |
|||
|
|
|
RESTful webservices use HTTP methods explicitly by mapping the REST operations to HTTP methods:
Here is a link to a good summary. |
||||
|
|
|
It's basically web services that implement CRUD using the HTTP methods(GET, POST, PUT, DELETE) |
|||
|
|