Performance of SOAP vs. XML-RPC or REST - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:56:25Z http://stackoverflow.com/feeds/question/106546 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest 10 Performance of SOAP vs. XML-RPC or REST Bradley Harris 2008-09-20T00:23:28Z 2009-07-04T07:09:01Z <p>The arguments about the simplicity of solutions using XML-RPC or REST are easy to understand and hard to argue with.</p> <p>I have often also heard arguments that the increased overhead of SOAP may significantly impact used bandwidth and possibly even latency. I would like to see the results of a test that quantifies the impact. Any one know a good source for such information?</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/106562#106562 5 Answer by FlySwat for Performance of SOAP vs. XML-RPC or REST FlySwat 2008-09-20T00:31:53Z 2008-09-20T00:31:53Z <p>REST as a protocol does not define any form of message envelope, while SOAP does have this standard.</p> <p>Therefor, its somewhat simplistic to try and compare the two, they are apples to oranges.</p> <p>That said, a SOAP envelope (minus the data) is only a few k, so there shouldn't be any noticeable difference in speed provided you are retrieving a serialized object via both SOAP and REST.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/106567#106567 0 Answer by MetroidFan2002 for Performance of SOAP vs. XML-RPC or REST MetroidFan2002 2008-09-20T00:32:46Z 2008-09-20T00:32:46Z <p>I don't know of any answer to the benchmarking question, however, what I do know about the SOAP format is yes, it does have overhead, but that overhead does not increase per request: if you have one element sent to the web service, you have overhead + one element construction, and if you have 1000 elements sent to the web service, you have overhead + 1000 element construction. The overhead occurs as the XML request is formatted for the particular operation, but every individual argument element in the request is formatted the same.</p> <p>If you stick to repeatable, short bursts of data (say, 500 elements), the speed should be acceptible.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/106701#106701 15 Answer by pjz for Performance of SOAP vs. XML-RPC or REST pjz 2008-09-20T01:25:47Z 2008-09-20T01:25:47Z <p>The main impact in speed of SOAP vs. REST has not to do with wire speed, but with cachability. REST suggests using the web's semantics instead of trying to tunnel over it via XML, so RESTful web services are generally designed to correctly use cache headers, so they work well with the web's standard infrastructure like caching proxies and even local browser caches. Also, using the web's semantics means that things like ETags and automatic zip compression are well understood ways to increase efficiency.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/106723#106723 0 Answer by anjanb for Performance of SOAP vs. XML-RPC or REST anjanb 2008-09-20T01:39:01Z 2008-09-20T01:39:01Z <h1>Expanding on "pjz" 's answer.</h1> <p>If you're getting a lot of INFORMATION(get* type of calls) based SOAP operations, currently there is no way you can cache them. But if you were to implement these same operations using REST, there is a possibility that the data(depends on your business context) can be cached, as mentioned above. Because SOAP uses POST for its operations, it cannot cache the information at the server side.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/107568#107568 2 Answer by MarkR for Performance of SOAP vs. XML-RPC or REST MarkR 2008-09-20T07:53:41Z 2008-09-20T07:53:41Z <p>SOAP and any other protocol which uses XML generally bloats your messages quite a bit - this may or may not be a problem depending on the context.</p> <p>Something like JSON would be more compact and maybe faster to serialise / deserialise - but don't use it exclusively for that reason. Do whatever you feel makes sense at the time and change it if it's a problem.</p> <p>Anything which uses HTTP typically (Unless it's reusing a HTTP 1.1 keepalive connection, which many implementations do not) starts up a new TCP connection for each request; this is quite bad, especially over high latency links. HTTPS is much worse. If you have a lot of short requests from one sender to one receiver, think about how you can take this overhead out. </p> <p>Using HTTP for any kind of RPC (whether SOAP or something else) is always going to incur that overhead. Other RPC protocols generally allow you to keep a connection open.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest/1081715#1081715 0 Answer by pbreitenbach for Performance of SOAP vs. XML-RPC or REST pbreitenbach 2009-07-04T07:09:01Z 2009-07-04T07:09:01Z <p>SOAP is definitely slower. Payloads are significantly larger which are slower to assemble, transport, parse, validate and process.</p>