REST vs. SOAP - Doesn't support Transactions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:21:34Zhttp://stackoverflow.com/feeds/question/967502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/967502/rest-vs-soap-doesnt-support-transactions1REST vs. SOAP - Doesn't support Transactions?unknown (google)2009-06-08T23:20:04Z2009-06-11T00:21:33Z
<p>I'm barely examining the architecture of REST and SOAP as an SOA in my architecture. When comparing the two, I've heard one of the downsides to REST is that is doesn't support "Transactions" - what are they talking about? Because from I can tell, it does support CRUD operations just from the underlying HTTP protocols of GET, POST, DELETE, etc.</p>
<p>Can someone please elaborate? If I pick REST, can it support my transaction-intensive workplace of CRUD operations or is it better for me to go the SOAP-route?</p>
http://stackoverflow.com/questions/967502/rest-vs-soap-doesnt-support-transactions/967526#9675261Answer by binarycoder for REST vs. SOAP - Doesn't support Transactions?binarycoder2009-06-08T23:27:25Z2009-06-08T23:27:25Z<p>The kind of transaction you are referring to is a distributed transaction. This allows the client to perform multiple calls on the server (or even several different servers) and have them all commit or all rollback.</p>
<p>WCF supports distributed transactions through the WS-AtomicTransaction (WS-AT) protocol. This protocol is geared toward SOAP. Therefore, to use WCF transactions, you must use SOAP -- not REST.</p>
<p>Although you won't have across-call distributed transactions with REST, you can still use database transactions within a specific method. For example, you could implement a POST operation that submits an order and updates both the Order and OrderLine database tables in one transaction within that method. So, just because your application is transaction-intensive does not necessarily mean that the <em>distributed</em> kind of transactions which are a problem for REST are going to be important in your environment.</p>
http://stackoverflow.com/questions/967502/rest-vs-soap-doesnt-support-transactions/967544#9675446Answer by Kevin for REST vs. SOAP - Doesn't support Transactions?Kevin2009-06-08T23:33:32Z2009-06-08T23:33:32Z<p>If you need to do transactions across multiple calls, you will be better off not choosing either and picking something like remoting or doing binary serialization in wcf. Both REST and SOAP are meant to be stateless. A connection opens, performs an action and then closes again. That being said, wcf does support transactional support through SOAP, so if you have to choose just between the two that would be the one.</p>
http://stackoverflow.com/questions/967502/rest-vs-soap-doesnt-support-transactions/978525#9785250Answer by joschi for REST vs. SOAP - Doesn't support Transactions?joschi2009-06-10T22:49:15Z2009-06-10T22:49:15Z<p>Take a look at <a href="http://www.opadoi.gr/RETROv0.1.pdf" rel="nofollow">RETRO</a>.</p>
http://stackoverflow.com/questions/967502/rest-vs-soap-doesnt-support-transactions/978756#9787562Answer by Darrel Miller for REST vs. SOAP - Doesn't support Transactions?Darrel Miller2009-06-11T00:21:33Z2009-06-11T00:21:33Z<p>To <a href="http://tech.groups.yahoo.com/group/rest-discuss/message/12837" rel="nofollow">quote</a> Roy Fielding from yesterday</p>
<blockquote>
<p>I consider "rest transaction" to be an
oxymoron.</p>
</blockquote>