I have just started exploring Web services(WS). Sorry if this is a Naive question, I have been reading articles about REST WS and came across one article where it was mentioned to use REST for CRUD operations as Services while SOAP is used for accessing business logic as services.
For example,
getUser(User); // REST operation
addNumbers(int, int) // SOAP operation
Is it always true? Can we use them interchangeably?
Thanks in Advance!