REST and redirecting the response
- by Duane Gran
I'm developing a RESTful service. Here is a map of the current feature set:
POST /api/document/file.jpg (creates the resource)
GET /api/document/file.jpg (retrieves the resource)
DELETE /api/document/file.jpg (removes the resource)
So far, it does everything you might expect. I have a particular use case where I need to set up the…