I understand how to use REST for doing general entity interactions - using urls names to map to entities and the HTTP verbs to map to actions on those entities. But what is the generally accepted way of looking at "actions" more like RPC?

For example, let's say I want to send a command for the device to reset? There's no real "entity" here or do I do something like POST to http://mydevice/device/reset?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

/device/reset or /system/reset are ok.

The REST "design pattern" does encourage you to NOT use any verbs.. You could do:

POST http://mydevice/system/state    
<stateType>RESET</stateType>

Related information:

link|improve this answer
1  
Yes, that is a possible solution. – Jan Algermissen Mar 15 '10 at 14:49
feedback

I don't think that's the case to use POST. The "RESET action" is a idempotent action (if you call it n times you will always get the same result), so IMHO you should use a PUT call instead POST (as POST is not idempotent).

Also, as you are Putting a resource, you can use

PUT http://system
<device>
  <status>RESET</status>
</device>

or

 PUT http://system/status/reset

But I think the 1st one is "more restful", since you are putting a resource, while the second onde you just use the url.

link|improve this answer
so you'd say that PUT is an UPDATE and POST is an INSERT (IBM instead of Sun definition)? See this: stackoverflow.com/questions/2447677/… – ctacke Mar 15 '10 at 14:36
Not Really. If you think about CRUD, you can use this analogy, and it is correct to say that if you have an INSERT and an UPDATE, you should use POST and PUT, respectively. But the idempotence is more than that. Imagine there is a resource which you can only insert once on your DB and you should never change it. That's an insert and an idempotent action, so in this situation I think PUT would be used. – Diego Dias Mar 15 '10 at 14:44
1  
PUT system/status/reset with an empty body just updates the resource to be empty. The first is the correct RESTful way. – Jan Algermissen Mar 15 '10 at 14:48
Also, differently from the link you posted. This use of PUT (idempotency and uploading a representation of a resource) is what the protocol of the Http methods say, not really a common use. en.wikipedia.org/wiki/… – Diego Dias Mar 15 '10 at 14:49
@Jan I agree with you. However as I don't know the exact use of the WS, I think that can also be used. – Diego Dias Mar 15 '10 at 14:51
feedback

I usually name the entity "system" or something like that. So you do "/system/reset". You've chosen device so that works too.

But yea, I usually consider these types of actions to be updates, which would use the POST method. So I think you are right to POST to /device/reset

link|improve this answer
Funny you should key in on the PUT/POST thing - I just asked about that as well: stackoverflow.com/questions/2447677/… – ctacke Mar 15 '10 at 14:19
I'll comment on that, but I also use a REST-variation as not all clients handle PUT/DELETE. Read the wikipedia page for REST: en.wikipedia.org/wiki/Representational_State_Transfer – ocdcoder Mar 15 '10 at 14:22
Yes, I read the Wikipedia article. Since I'm controlling both the service and the client end, I've got the luxury of using all 4 verbs. – ctacke Mar 15 '10 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.