martes, 18 de septiembre de 2018

The requested resource is not available. @DELETE

The RESTful web services cookbook is a great resource for this. By chance, its google previewshow the page about DELETE (page 11):
The DELETE method is idempotent. This implies that the server must return response code 200 (OK) even if the server deleted the resource in a previous request. But in practice, implementing DELETE as an idempotent operation requires the server to keep track of all deleted resources. Otherwise, it can return a 404 (Not Found).

No hay comentarios: