What's the difference between a REST system and a system that is RESTful?
From a few things I've read most so called REST services are actually RESTful services. So what is the difference between the two.
|
What's the difference between a REST system and a system that is RESTful? From a few things I've read most so called REST services are actually RESTful services. So what is the difference between the two. |
|||||||||
|
|
Representational state transfer (REST) is a style of software architecture. As described in a dissertation by Roy Fielding, REST is an "architectural style" that basically exploits the existing technology and protocols of the Web. RESTful is typically used to refer to web services implementing such an architecture. |
||||
|
|
|
As Jason said in the comments, RESTful is just used as an adjective describing something that respects the REST constraints. |
|||
|
|
|
|
|||||||||
|
|
REST is an style of software architecture for distributed software Conforming to the REST constraints is referred to as being ‘RESTful’. Very used today to build web services as an alternative to SOAP. Here you have some links to check http://en.wikipedia.org/wiki/Representational_State_Transfer |
||||
|
|
|
Representational State Transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. The term Representational State Transfer was introduced and defined in 2000 by Roy Fielding1[2] in his doctoral dissertation. Fielding is one of the principal authors of the Hypertext Transfer Protocol (HTTP) specification versions 1.0 and 1.1. Conforming to the REST constraints is referred to as being ‘RESTful’. Source:Wikipedia |
||||
|
|
|
Web services are essentially web sites whose content is consumed by computer programs, not people. REST is a set of architectural principles that stipulate that web services should maximally leverage HTTP and other web standards, so that programs gain all the good stuff that people already can get out of the web. REST is often contrasted with SOAP web services, and other "remote procedure call" oriented web services. Stefan Tilkov's presentations on REST at Parleys.com are quite good, especially this one. For a book, you can't get any better than Richardson and Ruby's Restful Web Services. |
||||
|
|
|
Check out this Channel 9, WCF: Developing RESTful Services PDC |
||||
|
|
|
http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm This is the original document that created the idea of RESTful networked applications. Cited in references of the REST wikipedia article. He also co-authored the HTTP RFC. |
|||
|
|
|
thanks for the answers. Read this article by Alex Rodriguez which suggests that a RESTful web service has 4 basic characteristics which are:
|
|||
|
|
|
Read this http://home.ccil.org/~cowan/restws.pdf article. you can find complete information about rest and restful |
|||
|