Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • GET and POST are supported by all browsers, the rest are quirky to say the least
  • PUT would be nice for create
  • DELETE would be nice for delete
  • IPSecurity filter blocks all but GET and POST
  • Some frameworks simluate methods using a query param named _method

URI design scheme

  • Reading resources are done using GET and a path (GET <resource path>)
  • Performing an action on a resource is done using POST and a trailing action name (POST <resource path>/<action name>)

REST Module infrastructure

...