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. S
A "REST service" and a "RESTful service" are one and the same.
A RESTful system is any system that follows the REST conventions as defined in the original document that created the idea of RESTful networked applications.
It's worth noting there are varying levels of RESTfulness. Overall, REST is a style, not a standard, so there is room for interpretation based on needs. one example is hierarchical resource URLs (e.g. /things/ID/relatedthings
) vs flat URLs (e.g. /things/ID
and /relatedthings?thing=ID
)