DEV Community

Discussion on: RESTful without HTTP Verbs

Collapse
 
carywreams profile image
Cary Reams

As a thought exercise, why should a RESTful architecture depend on HTTP ?

Collapse
 
deceze profile image
David Zentgraf

Sure, you could relegate HTTP to be a mere transport mechanism and implement your own "RESTful" protocol on top of that. Does that provide any advantage? Does it allow you to easily switch the transport layer to something else down the line? Is that a foreseeable requirement? Also see Inner-platform effect.

Thread Thread
 
carywreams profile image
Cary Reams

Good read. Thank you.

Thread Thread
 
alainvanhout profile image
Alain Van Hout

And the somewhat related en.m.wikipedia.org/wiki/Not_invent...

Thread Thread
 
carywreams profile image
Cary Reams

Fair point.