RESTful Web Services

What are RESTful Web Services REST is used to build Web services that are lightweight, maintainable, and scalable in nature. A service which is built on the REST architecture is called a RESTful service. The underlying protocol for REST is HTTP, which is the basic web protocol. REST stands for REpresentational State Transfer. RE-presentations in RESTful web services RE-presentation once a resource is identified then its representation is to be decided using a standard format so that the server can send the resource in the above said format and client can understand the same format. REST does not impose any restriction on the format of a resource representation. Following are some important points to be considered while designing a representation format of a resource in RESTful Web Services. Understandability − Both the Server and the Client should be able to understand and utilize the representation format of the resource. Completeness − Format should be able to ...