vote up 12 vote down star
3

I'm wondering how you'd implement the following use-case in REST. Is it even possible to do without compromising the conceptual model?

Read or update multiple resources within the scope of a single transaction. For example, transfer $100 from Bob's bank account into John's account.

As far as I can tell, the only way to implement this is by cheating. You could POST to the resource associated with either John or Bob and carry out the entire operation using a single transaction. As far as I'm concerned this breaks the REST architecture because you're essentially tunneling an RPC call through POST instead of really operating on individual resources.

flag

78% accept rate

4 Answers

vote up 10 vote down check

Consider a RESTful shopping basket scenario. The shopping basket is conceptually your transaction wrapper. In the same way that you can add multiple items to a shopping basket and then submit that basket to process the order, you can add Bob's account entry to the transaction wrapper and then Bill's account entry to the wrapper. When all the pieces are in place then you can POST/PUT the transaction wrapper with all the component pieces.

link|flag
I get the shopping basket example, but how when you generalize this it doesn't sound RESTful at all (you're not operating on resources). There is no realistic bank-related resource to wrap John and Bob. Good answer though! I feel like you're definitely moving in the right direction. – Gili Sep 29 '08 at 2:46
Why would TransferMoneyTransaction not be a viable banking resource? – Darrel Miller Sep 29 '08 at 2:58
I thought a resource was supposed to be a real-life object, not a service (i.e. method invocation). If you're able to make up resources that mimic services then how is REST any different from RPC? – Gili Sep 29 '08 at 14:24
1  
If your ensure that your endpoints refer to nouns then it is usually intuitive what the standard GET, PUT, POST, DELETE verbs will do to that noun. RPC allows endpoints to be verbs themselves and therefore they can conflict with the HTTP verbs and the intent becomes confusing. – Darrel Miller Sep 29 '08 at 15:33
1  
e.g. What happens if you do an HTTP DELETE on the endpoint UpdateXYZ ? Does it delete XYZ? Does it delete the Update or does it just do an Update and ignore the HTTP verb delete. By keeping verbs out of the endpoint you remove the confusion. – Darrel Miller Sep 29 '08 at 15:36
vote up 3 vote down

You'd have to roll your own "transaction id" type of tx management. So it would be 4 calls:

http://service/transaction (some sort of tx request)
http://service/bankaccount/bob (give tx id)
http://service/bankaccount/john (give tx id)
http://service/transaction (request to commit)

You'd have to handle the storing of the actions in a DB (if load balanced) or in memory or such, then handling commit, rollback, timeout.

Not really a RESTful day in the park.

link|flag
Ouch :) Thanks for the reply nonetheless... – Gili Sep 29 '08 at 1:54
vote up -1 vote down

I guess you could include the TAN in the URL/resource:

  1. PUT /transaction to get the ID (e.g. "1")
  2. [PUT, GET, POST, whatever] /1/account/bob
  3. [PUT, GET, POST, whatever] /1/account/bill
  4. DELETE /transaction with ID 1

Just an idea.

link|flag
I see two problems with this approach: 1) It implies you can't access a resource outside a transaction (though maybe this isn't a big deal). 2) None of the answers so far has touched upon the fact that the server is no longer stateless, though I suspect nothing can be done about that. – Gili Sep 29 '08 at 2:08
Well, /1/account/bob and /account/bob are just two different resources. :) And RE: stateless, it implies that the resource is always available and not dependent on a previous request. Since you asked for transactions, yes that is not the case. But then again, you wanted transactions. – Till Sep 29 '08 at 9:06
If a client has to assemble URIs, then your API is not RESTful. – Wahnfrieden Jul 22 at 20:27
vote up 1 vote down

I think that in this case it is totally acceptable to break the pure theory of REST in this situation. In any case, I don't think there is anything actually in REST that says you can't touch dependent objects in business cases that require it.

I really think it's not worth the extra hoops you would jump through to create a custom transaction manager, when you could just leverage the database to do it.

link|flag

Your Answer

Get an OpenID
or

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