Difference between revisions of "Representational state transfer"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(etc)
(etc)
Line 3: Line 3:
 
REST is a coordinated set of constraints applied to the design of components in a distributed [[hypermedia]] system that can lead to a more performant and maintainable [[software architecture]].
 
REST is a coordinated set of constraints applied to the design of components in a distributed [[hypermedia]] system that can lead to a more performant and maintainable [[software architecture]].
  
REST has gained widespread acceptance across the Web[citation needed] as a simpler alternative to [[SOAP]] and [[WSDL]]-based web services.  
+
REST has gained widespread acceptance across the Web as a simpler alternative to [[SOAP]] and [[WSDL]]-based web services.  
  
 
RESTful systems typically, but not always, communicate over the Hypertext Transfer Protocol with the same [[Hypertext Transfer Protocol|HTTP]] verbs (GET, POST, PUT, DELETE, etc.) used by [[Web browser|web browsers]] to retrieve [[Web page|web pages]] and send data to remote [[Web server|servers]].
 
RESTful systems typically, but not always, communicate over the Hypertext Transfer Protocol with the same [[Hypertext Transfer Protocol|HTTP]] verbs (GET, POST, PUT, DELETE, etc.) used by [[Web browser|web browsers]] to retrieve [[Web page|web pages]] and send data to remote [[Web server|servers]].
Line 9: Line 9:
 
The [[World Wide Web]] represents the largest implementation of a system conforming to the REST architectural style.
 
The [[World Wide Web]] represents the largest implementation of a system conforming to the REST architectural style.
  
== External Links ==  
+
== External links ==  
  
 
* [https://en.wikipedia.org/wiki/Representational_state_transfer Representational state transfer] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Representational_state_transfer Representational state transfer] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Overview_of_RESTful_API_Description_Languages Overview of RESTful API Description Languages] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Overview_of_RESTful_API_Description_Languages Overview of RESTful API Description Languages] @ Wikipedia

Revision as of 05:59, 8 June 2015

Representational State Transfer (REST) is a software architecture style consisting of guidelines and best practices for creating scalable web services.

REST is a coordinated set of constraints applied to the design of components in a distributed hypermedia system that can lead to a more performant and maintainable software architecture.

REST has gained widespread acceptance across the Web as a simpler alternative to SOAP and WSDL-based web services.

RESTful systems typically, but not always, communicate over the Hypertext Transfer Protocol with the same HTTP verbs (GET, POST, PUT, DELETE, etc.) used by web browsers to retrieve web pages and send data to remote servers.

The World Wide Web represents the largest implementation of a system conforming to the REST architectural style.

External links