Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
The reason for the question is because if you read the article in the link and look up what Dr Fielding thinks about most REST implementations they aren't REST systems at all. They exhibit RESTful behaviour but can't be classed as REST systems. – AwkwardCoder Oct 14 '09 at 20:45
3  
I read the article but I don't think it led to him to such semantically useless distinctions. – JasonTrue Oct 14 '09 at 20:50
Wikipedia article on REST - en.wikipedia.org/wiki/Representational_State_Transfer - second paragraph - "Conforming to the REST constraints is often referred to as being ‘RESTful’." – Nate Oct 15 '09 at 3:09

11 Answers

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.

share|improve this answer

"REST" is an architectural paradigm. "RESTful" describes using that paradigm.

share|improve this answer

As Jason said in the comments, RESTful is just used as an adjective describing something that respects the REST constraints.

share|improve this answer

An Overview
A simple example

share|improve this answer
@Tim: thanks for the link – Abu Hamzah Apr 27 '10 at 13:55
4  
Not sure I like that second link. Look at section 4: "For creation, updating, and deleting data, use POST requests." Uhh...what? – Brian Kelly Oct 7 '11 at 1:39
This is the only answer which actually helped me understand what ReST is. – itcouldevenbeaboat May 16 at 21:22

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
http://www.computerworld.com/s/article/297424/Representational_State_Transfer_REST_
http://www.ibm.com/developerworks/webservices/library/ws-restful/

share|improve this answer
+1 thanks for reply – Abu Hamzah Apr 29 '10 at 15:30

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

share|improve this answer
+1 thanks for reply – Abu Hamzah Apr 29 '10 at 15:29

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.

share|improve this answer
+1 thanks for reply – Abu Hamzah Apr 29 '10 at 15:28

Check out this Channel 9, WCF: Developing RESTful Services PDC

share|improve this answer
+1 thanks for reply – Abu Hamzah Apr 29 '10 at 15:28

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.

share|improve this answer

thanks for the answers. Read this article by Alex Rodriguez which suggests that a RESTful web service has 4 basic characteristics which are:

  1. Use HTTP methods explicitly.
  2. Be stateless.
  3. Expose directory structure-like URIs.
  4. Transfer XML, JavaScript Object Notation (JSON), or both.
share|improve this answer

Read this http://home.ccil.org/~cowan/restws.pdf article. you can find complete information about rest and restful

share|improve this answer
The linked slides look like they're meant for someone other than a developer and wouldn't be very helpful to the asker. – MCeley Mar 5 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.