Changes between Version 17 and Version 18 of S3REST
- Timestamp:
- 03/01/10 02:02:31 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3REST
v17 v18 16 16 === REST Methods === 17 17 18 It is critical to understand that RESTful requests have two components that determine the response: 18 It is critical to understand how RESTful requests work. 19 20 A RESTful requests has two components: 19 21 20 22 - the URL addresses the resource … … 28 30 - a function in the application related to one of the above resource types 29 31 32 The finally executed response action depends on the HTTP/method and on the type of resource addressed by the URL, e.g. 33 34 - if the method is "GET" and the resource addressed is a database table, then the response will be a list of the records in that table 35 - if the method is "PUT" and the resource addressed is a record in a table, then the response will be an update of that record with the data from the request body 30 36 === CRUD Method Handlers === 31 37