InterviewSolution
| 1. |
What Is Rest (representational State Transfer)? |
|
Answer» A type of remote access PROTOCOL, which, transfers state from client to server which can be used to manipulate state instead of calling remote procedures.
REST maintains the nomenclature of resources on a network and provides unified mechanism to perform operations on these resources. Each resource is identified by at least ONE identifier. If the REST infrastructure is implemented with the base of HTTP, then these identifiers are termed as Uniform Resource Identifiers (URIs). The following are the two common subsets of the URI set: URL--- Uniform Resource Locator URN--- Uniform Resource Name--- urn:isbn:0-201-71088-9 urn:uuid:13e8cf26-2a25-11db-8693-000ae4ea7d46 Before UNDERSTANDING the implementation of CherryPy architecture, let’s focus on the architecture of CherryPy. CherryPy includes the following three components
A type of remote access protocol, which, transfers state from client to server which can be used to manipulate state instead of calling remote procedures. REST maintains the nomenclature of resources on a network and provides unified mechanism to perform operations on these resources. Each resource is identified by at least one identifier. If the REST infrastructure is implemented with the base of HTTP, then these identifiers are termed as Uniform Resource Identifiers (URIs). The following are the two common subsets of the URI set: URL--- Uniform Resource Locator URN--- Uniform Resource Name--- urn:isbn:0-201-71088-9 urn:uuid:13e8cf26-2a25-11db-8693-000ae4ea7d46 Before understanding the implementation of CherryPy architecture, let’s focus on the architecture of CherryPy. CherryPy includes the following three components |
|