DEV Community

Discussion on: I don't know what it stands for

Collapse
 
cubiclesocial profile image
cubiclesocial

SOAP and REST are two different ways to communicate with a remote host to exchange data and/or make changes to a remote system. SOAP is an older protocol with a dependency on XML while REST tends to be JSON-based (but not always) and more in line with how HTTP works.

Both operate over HTTP(S).