| 1. |
What Is Restful? |
|
Answer» Representational State Transfer (REST) is an architectural STYLE and an approach to communications that is OFTEN used in the development of web services. It relies on a STATELESS, client server, cacheable communications PROTOCOL. RESTful applications use HTTP REQUESTS to post data, read data, and delete data.The six architectural constraints of REST are: uniform interface, stateless, cacheable, client server, layered system, and code on demand. Representational State Transfer (REST) is an architectural style and an approach to communications that is often used in the development of web services. It relies on a stateless, client server, cacheable communications protocol. RESTful applications use HTTP requests to post data, read data, and delete data.The six architectural constraints of REST are: uniform interface, stateless, cacheable, client server, layered system, and code on demand. |
|