Reputation: 5695
Writing a small internal presentation on REST, I got a little curious..
I know the WWW is the largest implementation of REST, and that REST was defined alongside HTTP 1.1, but are there any other implementations of the architectural style, besides HTTP?
Upvotes: 12
Views: 3335
Reputation: 9440
By definition, REST is not coupled/bound to HTTP as its communication protocol. There might be some other protocols suitable for REST, such as Waka.
Upvotes: 2
Reputation: 4978
No, there aren't. The Web is the only one.
But if you are interested, it might be worthwhile to study other architecturally sound architectures. All the transfer protocols out there make good examples: SMTP, FTP, NNTP, (more?)
The UNIX command line is also an excellent thing to study architecturally (but that's pipe and filter).
Jan
Upvotes: 0
Reputation: 16438
Thinking of magic triangle of REST:
I can only see protocols or tools which take some of the principles but not all of them.
E.g. SQL has a uninform interface (DELETE,SELECT,INSERT,UPDATE) and kind of nouns (table + columns) but hasn't the representation part in its core (e.g. no way to say 'SELECT .... AS application/xml'.
As far as I have seen, HTTP is the "best" example implementing Rest-principles. To me HTTP is a perfect example how simplicity and powerfulness come together.
Upvotes: 10