Reputation: 3640
Calling a RESTful web service means POST/GET some values to the web service URL.
When calling a SOAP web service, does it also POST the value to the web service URL (with the value following the SOAP format)?
Or another way of putting this, calling SOAP web services and RESTful web services makes no difference except for the data format?
Upvotes: 1
Views: 58
Reputation: 24580
There are a lot of differences between SOAP and REST. I won't go into details because you'll find lots of information online, but regarding the requests you send to the services I can mention a few difference of the top of my head:
/customers
, /customers/12
, /customers/12/orders
, /customer/12/orders/last
etc).So, in conclusion, calling a SOAP web service is actually different than calling a RESTful one.
Upvotes: 1