vote up 7 vote down star
1

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.

flag

6  
This doesn't seem like a real question to me. RESTful is just used as an adjective describing something having the characteristics of the REST model. – JasonTrue Oct 14 at 20:39
4  
That doesn't seem like a real answer to me because it's in the comments. – mgroves Oct 14 at 20:44
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. – AWC Oct 14 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 at 20:50
Wikipedia article on REST - en.wikipedia.org/wiki/… - second paragraph - "Conforming to the REST constraints is often referred to as being ‘RESTful’." – Nate Oct 15 at 3:09

3 Answers

vote up 8 vote down

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.

link|flag
vote up 6 vote down

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

link|flag
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

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