SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our User Agreement and Privacy Policy.
SlideShare uses cookies to improve functionality and performance, and to provide you with relevant advertising. If you continue browsing the site, you agree to the use of cookies on this website. See our Privacy Policy and User Agreement for details.
Successfully reported this slideshow.
Activate your 14 day free trial to unlock unlimited reading.
13.
Smart IT Engineering Ltd. What is REST <ul><li>RE presentational S tate T ransfer
14.
Proposed by Dr. Roy Thomas Fielding in his PhD dissertation titled - “Architectural Styles and the Design of Network-based Software Architectures” </li></ul>
15.
Smart IT Engineering Ltd. What is REST <ul><li>RE presentational S tate T ransfer
16.
REST is an architectural style composed of specific constraints.
17.
The Constraints - </li></ul>- Client-Server - Stateless - Cache - Uniform Interface - Layered System - Code-On-Demand (Optional)
18.
Smart IT Engineering Ltd. REST Constraints <ul>Client-Server <li>No restrictions on the nature of the client
25.
Smart IT Engineering Ltd. REST Constraints <ul>Stateless “ ... each request from client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server.” </ul>Advantages Visibility Reliability Scalability
26.
Smart IT Engineering Ltd. REST Constraints <ul>Cache “ ... the data within a response to a request be implicitly or explicitly labeled as cacheable or non-cacheable. If a response is cacheable, then a client cache is given the right to reuse that response data for later, equivalent requests.” </ul>Advantages Efficient Scalability Performance
27.
Smart IT Engineering Ltd. REST Constraints <ul>Layered System The layered system style or also popularly referred to as n-layer system allows an architecture to be composed of hierarchical layers by constraining component behavior such that each component cannot "see" beyond the immediate layer with which they are interacting. </ul><ul>Code-On-Demand Allows client functionality to be extended by downloading and executing code in the form of applets or scripts . This simplifies clients by reducing the number of features required to be pre-implemented. </ul>
28.
Smart IT Engineering Ltd. REST Constraints <ul>Uniform Interface Central distinguishing feature of REST Involves four constraints to define 'uniform interface' for REST systems. <li>Identification of resources
29.
Manipulation of resources through representations
31.
HATEOAS ( H ypermedia A s T he E ngine O f A pplication S tate) </li></ul>
32.
Smart IT Engineering Ltd. REST Constraints <ul>Uniform Interface - Resource <li>Any concept that might be the target of an web-author's hypertext reference must fit within the definition of a resource.
33.
A resource is a conceptual mapping to a set of entities , not the entity that corresponds to the mapping at any particular point in time.
34.
If compared of Object Oriented aproach, Object if referrrable is a resource.
35.
Examples of resources would Books, A Book, An Author, Authors, Authors of a Book, A Publisher, Categories of a Book, A Category etc. </li></ul>
36.
Smart IT Engineering Ltd. REST Constraints <ul>Uniform Interface – Representations & Messages <li>A representation is a sequence of bytes describing a resource in a particular format.
37.
Other commonly used but less precise names for a representation include: document, file, and HTTP message entity, instance, or variant.
38.
Message consists of control data, metadata, messages and in some cases hyperlinks to resources.
39.
Examples: Images (image/jpg, image/png, etc.), Markups (text/html, application/xml etc.) and more. </li></ul>
40.
Smart IT Engineering Ltd. REST Constraints <ul>Uniform Interface – HATEOAS <li>A hypermedia in each server response will contain links that correspond to all the actions that the client can currently perform.
41.
Therefore, dependent on the current application state, every server response describes the new actions that are available.
42.
The server can change the range of allowable responses in a dynamic way, and a client should adapt its behavior to these changes.
43.
A client of a RESTful application need only know a single fixed URL to access it. </li></ul>
44.
Smart IT Engineering Ltd. REST Constraints <ul>Uniform Interface – HATEOAS <li>All future actions should be discoverable dynamically from hypermedia links included in the representations of the resources that are returned from that URL.
45.
The link relations should be standardized , so that the client knows what selecting that state transition means.
46.
Standardized media types are also expected to be understood by any client that might use the API.
47.
Application state transitions are driven by a combination of the known processing rules for each media type, client selection from the server-provided choices in representations received, and the user's manipulation of those representations. Thus interactions are driven by hypermedia . </li></ul>
48.
Smart IT Engineering Ltd. REST What is the biggest known RESTful System on planet Earth?
49.
Smart IT Engineering Ltd. REST World Wide Web a.k.a Internet <ul><li>HTTP Web Pages </li><ul><li>HTML pages are hypermedia </li><ul><li>CSS
55.
Smart IT Engineering Ltd. RESTful Web Service What is RESTful Web Service or API? Any system following fulfilling the constraints, thus definition, of REST is a RESTful Web Service.
56.
Smart IT Engineering Ltd. RESTful Web Service <ul><li>RESTful Web Service system communicates over HTTP protocol
57.
RESTful Web Service design and architecture grows around resource .
58.
All WWW sites are inherently REST-like and can easily be RESTful hence RESTful Web Service; e.g. Google Search Engine.
59.
Web Service not only consists of either HTML markups, CSS and JavaScript, or other media formats, but may consist both </li></ul>
60.
Smart IT Engineering Ltd. Resource Oriented Architecture <ul><li>Introduced in the book “RESTful Web Services”
61.
Resource-Oriented Architecture is about REST-ful system with the technologies of the Web </li></ul>
62.
Smart IT Engineering Ltd. ROA - Resource <ul><li>A Resource is anything, a concept, that is worth having a URI to linked to. E.g. http://basis.com.bd/softexpo/2011/
64.
A Resource may have many URIs but needs to have at least one .
65.
A Resource may have one or more representations; i.e. it may not have any representations at all. </li></ul>
66.
Smart IT Engineering Ltd. ROA - Resource <ul><li>Having a nice URI is not mendatory as in REST clients do not form URIs rather discover them. So it is indifferent to have basis.com.bd/softexpo/2011/ instead of basis.com.bd/abc/def as long as they name and address the same resource.
68.
If Resource has multiple variants, i.e. combination of media format (atom xml, html etc.), encoding (ASCII, UTF-8 etc.) and language (en-US, bn etc.), besides supporting content negotiation, URI for each variant is beneficial for external linking. </li></ul>
69.
Smart IT Engineering Ltd. ROA - Resource <ul>HTTP Hints <li>Content negotiation for representation in HTTP is done through request headers – Accept, Accept-Encoding, Accept-Language
70.
Use Vary header in response in case a URI support multiple representations
71.
Use Location header in response to specify the exact URI to the variant in case of nice URIs. </li></ul>
72.
Smart IT Engineering Ltd. ROA - Features <ul>Key Features of ROA <li>Addressability
76.
Smart IT Engineering Ltd. ROA - Addressability <ul><li>If an application exposes all conceivable or interesting aspects of its data set as resources then it is addressable.
77.
IOW an addressable application exposes URI for every bit of information it can conceivably serve
79.
Consider a search resource, e.g. Google Search, A paginated atom feed of all books of a bookstore etc. </li></ul>
80.
Smart IT Engineering Ltd. ROA - Statelessnes <ul><li>Same as that of REST
81.
Introducing Application State and Resource State.
82.
Application State resides on client side ensuring every request can be treated individually by the server without considering the past requests from the client
83.
Resource State is data that makes up the resource. It resides server side and in case of write-able resource can be modified through its representation </li></ul>
84.
Smart IT Engineering Ltd. ROA – Statelessnes Representations <ul><li>Lets consider a resource we call Book.
85.
Book has name, ISBN only. (ignoring publisher, author(s) and categories for now).
86.
It has 2 representations HTML and WWW URL Encoded.
87.
Client can track how it reached the book in its client application state. Note different apps may reach to the same resource in different ways. E.g., one from Google Search another from a Facebook app.
88.
The resource state, i.e. the current name and ISBN resides on the server side and is indifferent for any client.
89.
Clients receive the representations of the resource and provides the server with the same to edit its information. </li></ul>
90.
Smart IT Engineering Ltd. ROA – Statelessnes Link & Connectedness <ul><li>Lets enrich the Book dataset to contain author(s), publisher and categories.
91.
So for every book resource there would be at least 5 related, i.e. Connected/Linked resource. They are the book's authors resource , the book's categories resource , the book's publisher resource , an author of the book (from first resource), a category of the book (from the 3 rd resource). </li></ul>
96.
It basically follows the HTTP specification, does not change any definition but restricts on some of the operations usually performed
97.
IMPORTANT – It remains same across all RESTful WS Providers, reducing learning curve. </li></ul>
98.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Methods <li>GET – To read resources. Query parameters can be used to restrict the scope of the data set
99.
PUT – To create a resource if the URI is known or replace (completely) the current state of the resource
100.
DELETE – Delete the current resource. Might not actually physically delete the data just change the state. </li></ul>
101.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Methods <li>POST – Has multiple functions </li><ul><li>Create sub-ordinate resource
102.
Append state data to current resource, i.e. partially update the state of the resource
103.
Submit data to some background process, e.g. POST to search data. </li></ul><li>The first 2 are uniform but the last is not and is advisable to avoid
104.
In overloading POST with 2 ops one should consider breaking the resource to avoid overloading. </li></ul>
105.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Headers <li>For pre-condition based locking </li><ul><li>Entity Tag – ETag & If-Match
106.
Last Modified Date – Last-Modified & If-Unmodified-Since
107.
Implementation specific </li></ul><li>Client side caching </li><ul><li>Last Modified Date & Entity Tag for conditional GET using If-Modified-Since and If-None-Match
109.
Use Vary to support variants. </li></ul><li>Use Location to redirect or point to the permanent URI </li></ul>
110.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Status (commonly used) <li>200 OK for returning success of request.
111.
201 Created for returning that resource is created, in conjunction with Location header pointing to the created resource.
112.
202 Accepted for returning that request accepted but will process at a later time without any guarantee.
113.
204 No Content for specifying no message entity </li></ul>
114.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Status (commonly used) <li>302 Found for redirecting, prefer 303 instead.
115.
303 See Other for redirecting using the Location header pointing to the actual resource.
116.
304 Not Modified for conditional GET when condition is unmet, i.e. client can server from client cache.
117.
301 Move Permanently If a resource URI has been changed, e.g. the template for books changed to /r/books from /books. </li></ul>
118.
Smart IT Engineering Ltd. ROA – The Uniform Interface <ul>Status (commonly used) <li>400 Bad Request when request information is sufficient to process the data, e.g. required field of an HTML Form is missing.
119.
401 Unauthorized and 403 Forbidden for authentication and authorization failures respectively.
120.
404 Not Found for not being able to resolve the URI to a resuorce.
121.
406 Not Acceptable If none variants requested can be served by the server
122.
412 Preconditioned Failed if the conditions in request not met. Useful lock like feature in case of updates.
123.
415 Unsupported Media Type when request entity is not recognized by server for processing. </li></ul>
124.
Smart IT Engineering Ltd. ROA – Safety & Idempotence <ul><li>If designed according to the spec we get safety and idempotence for free.
125.
Safety – refers to GET and HEAD not changing any state of the resources concerned, but might have side effects, e.g. hit counters.
126.
Idempotence – Repeating any one of PUT, POST, DELETE on a resource any number of will yield the same result. </li></ul>
127.
Smart IT Engineering Ltd. RESTful vs RESTlike/REST-RPC Web Service <ul><li>Failures with my initial RESTful WS experiments </li><ul><li>Overloaded POST
128.
Not realizing HATEOAS, i.e. Linked and Connectedness
129.
Not realizing the strength of content negotiation, i.e. variant support
130.
Not realizing strength of conditional requests
131.
Not realizing the power of HTTP Cache </li></ul></ul>
132.
Smart IT Engineering Ltd. RESTful Web Services & ROA Questions?
133.
Smart IT Engineering Ltd. A Design Walk-through <ul><li>What remains unchanged? </li><ul><li>Use of HTTP as message vessel
144.
Choose supporting media types for resources </li></ul></ul>
145.
Smart IT Engineering Ltd. Design – Content Repository <ul><li>Requirement
146.
Contents can be separated logically in a boundary such that their definition and data can easily identified. Contents should extensively searchable, that is, by the logical partition definition type, free text etc. Contents and their fields can have multiple user configurable representations. All logical partitions should have featured contents. </li></ul>
152.
Content Type -/t/{workspaceId}/{contentTypeId}(/search)? </li></ul><li>The later 2 searches URIs are equivalent of </li><ul><li>/search?workspace={workspaceId}