top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is REST: Representation State Transfer?

+3 votes
319 views
What is REST: Representation State Transfer?
posted Sep 11, 2014 by Merry

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+3 votes
 
Best answer

In short REST is stateless architecture that runs over HTTP and is often used in mobile applications, social networking Web sites etc etc.

REST Architecture

REST involves reading a designated Web page that contains an XML file. The XML file describes and includes the desired content. The REST style emphasizes that interactions between clients and services is enhanced by having a limited number of operations (verbs).

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). The REST architectural style is also applied to the development of web services as an alternative to other distributed-computing specifications such as SOAP.

Credit: http://en.wikipedia.org/wiki/Representational_state_transfer

answer Sep 11, 2014 by Salil Agrawal
...