Jump to content

REST

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 92.60.245.178 (talk) at 13:53, 23 July 2014 (I believe the abbreviation has a small letter 'e', i.e. is "ReST"). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Representational state transfer (ReST) is an abstraction of the architecture of the World Wide Web. More precisely, ReST is an architectural style consisting of a coordinated set of architectural constraints applied to components, connectors, and data elements, within a distributed hypermedia system. REST ignores the details of component implementation and protocol syntax in order to focus on the roles of components, the constraints upon their interaction with other components, and their interpretation of significant data elements.[1][2]

The term representational state transfer was introduced and defined in 2000 by Roy Fielding in his doctoral dissertation at UC Irvine.[1][3] ReST has been applied to describe desired web architecture, to identify existing problems, to compare alternative solutions and to ensure that protocol extensions would not violate the core constraints that make the web successful. Fielding used ReST to design HTTP 1.1 and Uniform Resource Identifiers (URI).[4][5]

The ReST architectural style is also applied to the development of web services[6] as an alternative to other distributed-computing specifications such as SOAP. One can characterise web services as "ReSTful" if they conform to the constraints described in the Architectural constraints section.[7] See the Applied to web services section if you are only interested in the application of ReST to web APIs.

History

The ReST architectural style was developed by W3C Technical Architecture Group (TAG) in parallel with HTTP 1.1, based on the existing design of HTTP 1.0.[8] The World Wide Web represents the largest implementation of a system conforming to the ReST architectural style.

Software architecture

A software architecture is defined by a configuration of components, connectors, and data constrained in their relationships in order to achieve a desired set of architectural properties.[9]

Components
A component is an abstract unit of software instructions and internal state that provides a transformation of data via its interface.[9]
Connectors
A connector is an abstract mechanism that mediates communication, coordination, or cooperation among components.[9]
Data
Data is an element of information that is transferred from a component, or received by a component, via a connector.[9]

Architectural properties

The architectural properties induced by the architectural constraints of the ReST architectural style are:[10][1]

  • Performance - component interactions can be the dominant factor in user-perceived performance and network efficiency.[11]
  • Scalability to support large numbers of components and interactions among components
Fielding describes ReST's effect on scalability thus:

REST's client–server separation of concerns simplifies component implementation, reduces the complexity of connector semantics, improves the effectiveness of performance tuning, and increases the scalability of pure server components. Layered system constraints allow intermediaries—proxies, gateways, and firewalls—to be introduced at various points in the communication without changing the interfaces between components, thus allowing them to assist in communication translation or improve performance via large-scale, shared caching. REST enables intermediate processing by constraining messages to be self-descriptive: interaction is stateless between requests, standard methods and media types are used to indicate semantics and exchange information, and responses explicitly indicate cacheability.[12]

  • Simplicity of interfaces
  • Modifiability of components to meet changing needs (even while the application is running)
  • Visibility of communication between components by service agents
  • Portability of components by moving program code with the data
  • Reliability is the resistance to failure at the system level in the presence of failures within components, connectors, or data[11]

Architectural constraints

The architectural properties of ReST are realized by applying specific interaction constraints to components, connectors, and data elements.[1][10] The formal ReST constraints are:

Client–server

A uniform interface separates clients from servers. This separation of concerns means that, for example, clients are not concerned with data storage, which remains internal to each server, so that the portability of client code is improved. Servers are not concerned with the user interface or user state, so that servers can be simpler and more scalable. Servers and clients may also be replaced and developed independently, as long as the interface between them is not altered.

Stateless

The client–server communication is further constrained by no client context being stored on the server between requests. Each request from any client contains all the information necessary to service the request, and session state is held in the client. Important to note is that the session state can be transferred by the server to another service such as a database to maintain a persistent state for a period and allow authentication. The client begins sending requests when it is ready to make the transition to a new state. While one or more requests are outstanding, the client is considered to be in transition. The representation of each application state contains links that may be used the next time the client chooses to initiate a new state-transition.[13]

Cacheable

As on the World Wide Web, clients can cache responses. Responses must therefore, implicitly or explicitly, define themselves as cacheable, or not, to prevent clients reusing state or inappropriate data in response to further requests. Well-managed caching partially or completely eliminates some client–server interactions, further improving scalability and performance.

Layered system

A client cannot ordinarily tell whether it is connected directly to the end server, or to an intermediary along the way. Intermediary servers may improve system scalability by enabling load-balancing and by providing shared caches. They may also enforce security policies.

Code on demand (optional)

Servers can temporarily extend or customize the functionality of a client by the transfer of executable code. Examples of this may include compiled components such as Java applets and client-side scripts such as JavaScript. "Code on demand" is the only optional constraint of the ReST architecture.

Uniform interface

The uniform interface constraint is fundamental to the design of any ReST service.[14] The uniform interface simplifies and decouples the architecture, which enables each part to evolve independently. The four guiding principles of this interface are:

Identification of resources
Individual resources are identified in requests, for example using URIs in web-based ReST systems. The resources themselves are conceptually separate from the representations that are returned to the client. For example, the server may send data from its database as HTML, XML or JSON, none of which are the server's internal representation, and it is the same one resource regardless.
Manipulation of resources through these representations
When a client holds a representation of a resource, including any metadata attached, it has enough information to modify or delete the resource.
Self-descriptive messages
Each message includes enough information to describe how to process the message. For example, which parser to invoke may be specified by an Internet media type (previously known as a MIME type). Responses also explicitly indicate their cacheability.[1]
Hypermedia as the engine of application state (A.K.A. HATEOAS)
Clients make state transitions only through actions that are dynamically identified within hypermedia by the server (e.g., by hyperlinks within hypertext). Except for simple fixed entry points to the application, a client does not assume that any particular action is available for any particular resources beyond those described in representations previously received from the server.

One can characterise applications conforming to the ReST constraints described in this section as "ReSTful".[15] If a service violates any of the required constraints, it cannot be considered ReSTful.

Complying with these constraints, and thus conforming to the ReST architectural-style, enables any kind of distributed hypermedia system to have desirable emergent properties, such as performance, scalability, simplicity, modifiability, visibility, portability, and reliability.

Concept

Representational State Transfer is intended to evoke an image of how a well-designed Web application behaves: presented with a network of Web pages (a virtual state-machine), the user progresses through an application by selecting links (state transitions), resulting in the next page (representing the next state of the application) being transferred to the user and rendered for their use.[16]

ReST was initially described in the context of HTTP, but it is not limited to that protocol.[17] ReSTful architectures may be based on other Application Layer protocols if they already provide a rich and uniform vocabulary for applications based on the transfer of meaningful representational state. ReSTful applications maximize the use of the existing, well-defined interface and other built-in capabilities provided by the chosen network protocol, and minimize the addition of new application-specific features on top of it.

Applied to web services

Web service APIs that adhere to the Architectural constraints are called ReSTful. HTTP based ReSTful APIs are defined with these aspects:

  • base URI, such as http://example.com/resources/
  • an Internet media type for the data. This is often JSON but can be any other valid Internet media type (e.g. XML, Atom, microformats, images, etc.)
  • standard HTTP methods (e.g., GET, PUT, POST, or DELETE)
  • hypertext links to reference state
  • hypertext links to reference related resources[18]

The following table shows the HTTP methods that are typically used to implement a ReSTful API.

ReSTful API HTTP methods
Resource GET PUT POST DELETE
Collection URI, such as http://example.com/resources List the URIs and perhaps other details of the collection's members. Replace the entire collection with another collection. Create a new entry in the collection. The new entry's URI is assigned automatically and is usually returned by the operation. Delete the entire collection.
Element URI, such as http://example.com/resources/item17 Retrieve a representation of the addressed member of the collection, expressed in an appropriate Internet media type. Replace the addressed member of the collection, or if it doesn't exist, create it. Not generally used. Treat the addressed member as a collection in its own right and create a new entry in it. [citation needed] Delete the addressed member of the collection.

The PUT and DELETE methods are referred to as idempotent, meaning that the operation will produce the same result no matter how many times it is repeated. The GET method is a safe method (or nullipotent), meaning that calling it produces no side-effects. In other words, retrieving or accessing a record doesn't change it.

Unlike SOAP-based web services, there is no "official" standard for ReSTful web APIs.[19] This is because ReST is an architectural style, unlike SOAP, which is a protocol. Even though ReST is not a standard, a ReSTful implementation such as the Web can use standards like HTTP, URI, XML, etc.

See also

References

  1. ^ a b c d e Chapter 5 of Fielding's dissertation is "Representational State Transfer (REST)".
  2. ^ Fielding, Roy T.; Taylor, Richard N. (May 2002), "Principled Design of the Modern Web Architecture" (PDF), ACM Transactions on Internet Technology (TOIT), 2 (2), New York: Association for Computing Machinery: 115–150, doi:10.1145/514183.514185, ISSN 1533-5399
  3. ^ "Fielding discussing the definition of the ReST term". Tech.groups.yahoo.com. Retrieved 2013-11-28.
  4. ^ RFC 1945
  5. ^ RFC 2616
  6. ^ Attention: This template ({{cite doi}}) is deprecated. To cite the publication identified by doi:10.1145/337180.337228, please use {{cite journal}} (if it was published in a bona fide academic journal, otherwise {{cite report}} with |doi=10.1145/337180.337228 instead.
  7. ^ Richardson, Leonard (2007), RESTful web service, O'Reilly Media, ISBN 978-0-596-52926-0, retrieved 18 January 2011, The main topic of this book is the web service architectures which can be considered RESTful: those which get a good score when judged on the criteria set forth in Roy Fielding's dissertation. {{citation}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  8. ^ "Fielding discusses the development of the REST style". Tech.groups.yahoo.com. Retrieved 2013-02-07.
  9. ^ a b c d Chapter 1 of Fielding's dissertation is "Software Architecture".
  10. ^ a b Thomas Erl, ed. (2013). "5.1". SOA with REST. Prentice Hall. ISBN 978-0-13-701251-0. {{cite book}}: Unknown parameter |authors= ignored (help)
  11. ^ a b Chapter 2 of Fielding's dissertation is "Network-based Application Architectures".
  12. ^ (Fielding 2000, §5.3.1)
  13. ^ "Fielding talks about application states". Tech.groups.yahoo.com. Retrieved 2013-02-07.
  14. ^ (Fielding 2000, §5.1.5)
  15. ^ Richardson, Leonard (2007), RESTful web service, O'Reilly Media, ISBN 978-0-596-52926-0, retrieved 18 January 2011, The main topic of this book is the web service architectures which can be considered ReSTful: those which get a good score when judged on the criteria set forth in Roy Fielding's dissertation. {{citation}}: Unknown parameter |coauthors= ignored (|author= suggested) (help)
  16. ^ "Fielding's PhD thesis, section 6.1". Ics.uci.edu. Retrieved 2013-02-07.
  17. ^ Sandeep Chanda; Damien Foggon (20 February 2013). Beginning ASP.NET 4.5 Databases. Apress. pp. 158–. ISBN 978-1-4302-4380-9. Retrieved 30 April 2013.
  18. ^ "REST APIs must be hypertext driven by Roy Fielding". Roy.gbiv.com. 2008-10-20. Retrieved 2013-02-07.
  19. ^ Elkstein, M. What is REST?. Retrieved on 2009-07-04.

Further reading