Difference between revisions of "Representational state transfer"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 2: Line 2:
  
 
REST-compliant web services allow requesting systems to access and manipulate textual representations of web resources using a uniform and predefined set of [[Stateless protocol|stateless]] operations.
 
REST-compliant web services allow requesting systems to access and manipulate textual representations of web resources using a uniform and predefined set of [[Stateless protocol|stateless]] operations.
 +
 +
The term ''REST'' stands for ''representational state transfer''.
  
 
== Description ==
 
== Description ==

Revision as of 12:06, 1 December 2016

Representational state transfer (REST) or RESTful web services are one way of providing interoperability between computer systems on the Internet.

REST-compliant web services allow requesting systems to access and manipulate textual representations of web resources using a uniform and predefined set of stateless operations.

The term REST stands for representational state transfer.

Description

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.

World Wide Web

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

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.

See also

External links