What is REST.
REST
stands for Representational State Transfer. It relies on a
stateless, client-server, cacheable communications protocol and in virtually
all cases, the HTTP protocol is used. REST is an architecture style for
designing networked applications. The idea is that, rather than using complex
mechanisms such as CORBA, RPC or SOAP to connect between machines, simple HTTP
is used to make calls between machines. In many ways, the World Wide Web
itself, based on HTTP, can be viewed as a REST-based architecture.
RESTful
applications use HTTP requests to post data (create and/or update), read data
(e.g., make queries), and delete data. Thus, REST uses HTTP for all four CRUD
(Create/Read/Update/Delete) operations.
Comments
Post a Comment