If I need a web service to pass back and forth a complex object, is there a reason I should prefer SOAP over REST? Here is an example of the possible SOAP message:
<soap:Envelope>
<soap:Header>
<Credentials>
<User>Joe</User>
<Password>abc123</Password>
</Credentials>
</soap:Header>
<soap:Body>
<MyComplexBusinessObject>
<Search>
<First>Joe</First>
<Last>Smith</Last>
</Search>
...
...
</MyComplexBusinessObject>
</soap:Body>
</soap:Envelope>
Using REST, I would be asking the client to POST the following xml and authenticate using Basic Authentication:
<MyComplexBusinessObject>
<Search>
<First>Joe</First>
<Last>Smith</Last>
</Search>
...
...
</MyComplexBusinessObject>
The SOAP message is slightly more complicated, but not by much. They are still both XML, but SOAP comes with a WSDL and most programming environments will generate proxy classes for you. However, most people I talk to say I should use REST instead because it's easier to use. But I don't see how SOAP is any harder to use.
Am I missing something?
[{'First':'Joe','Last':'Smith'},...]– Chris Morgan Nov 24 '10 at 12:05/searchwith standard POST variables;1=Joe,Smith&2=John,Citizen&...for example. If you're wanting more than just search, you've come to the wrong shop - SOAP may take everything at the one URL, but REST isn't like that - one URL per thing (and if you could just do/search/joe+smithor something like that it'd be better still). – Chris Morgan Nov 24 '10 at 12:33