On 6/5/07, Anil John <[EMAIL PROTECTED]> wrote: > So... Is GET supposed to be "safe" or not when it comes to REST?
REST doesn't care. It doesn't even require a GET-like operation be available. But GET is defined by HTTP to be safe, so it's most definitely bad practice to attribute a state change on a GET to the user. Mark.
