Changes between Version 17 and Version 18 of S3REST


Ignore:
Timestamp:
03/01/10 02:02:31 (15 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3REST

    v17 v18  
    1616=== REST Methods ===
    1717
    18 It is critical to understand that RESTful requests have two components that determine the response:
     18It is critical to understand how RESTful requests work.
     19
     20A RESTful requests has two components:
    1921
    2022  - the URL addresses the resource
     
    2830  - a function in the application related to one of the above resource types
    2931
     32The 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
    3036=== CRUD Method Handlers ===
    3137