InterviewSolution
Saved Bookmarks
| 1. |
What is REST and RestFul? |
|
Answer» REST or Representational State Transfer is an architectural style for designing applications. Instead of using complex MECHANISMS like CORBA, RPC or SOAP for communication, it dictates that HTTP should be used. There are a few principles associated with REST architectural style:
RESTFUL: It is TERM written by applying REST architectural concepts and is called RESTful services. It focuses on system resources and how the state of the resource should be transported over HTTP protocol. |
|