SOAP vs. REST APIs - Which Reigns Supreme?
by Terence Bennett • September 18, 2018
These days it's more true than ever that "no company is an island". Many businesses rely on each other by exchanging information and much of that exchange is done via an API. When diving deeper into the question of developing APIs, you'll undoubtedly encounter the question: SOAP or REST? Although REST APIs have become the most popular choice for today's businesses, the decision isn't always an easy one.
In this article, we'll go over everything you need to know about SOAP and REST APIs. That way you can come to the conclusion that's ultimately right for your situation.
Table of Contents
Did you know you can generate a full-featured, documented, and secure REST API in minutes using DreamFactory? Sign up for our free 14 day hosted trial to learn how! Our guided tour will show you how to create an API using an example database provided to you as part of the trial!
SOAP vs REST: What's the Difference?
SOAP (Simple Object Access Protocol) is an API protocol that uses the XML Information Set specification in order to exchange information, whereas REST (Representational State Transfer) is an architectural style for APIs that relies on the HTTP protocol and JSON data format to send and receive messages.
When comparing REST and SOAP, people often use the analogy of a postcard and an envelope. REST is like a postcard in that it's lightweight and consumes less bandwidth (paper). Meanwhile, SOAP is like an envelope: there's an extra overhead required on both ends to package and un-package it.
Note that the analogy isn't perfect: unlike a postcard, the content of REST requests and responses isn't (necessarily) insecure. Instead, REST uses the security of the underlying transport mechanism, which is usually HTTPS. On the other hand, SOAP implements its own security measure, which is known as WS-Security.
Some people believe that REST is largely a "replacement" for SOAP, due to its lower overhead and improved ease of use. According to Cloud Elements' 2017 State of API Integration report, 83 percent of APIs now use REST, while only 15 percent continue to use SOAP. Some of these businesses primarily use REST, but continue to integrate SOAP APIs into their projects using tools such as DreamFactory's SOAP connector.
However, the thought of SOAP being outdated isn't quite accurate. Even as REST becomes the API style of choice for most businesses, SOAP remains a tool that is better-suited for certain use cases, mainly in large enterprises who need additional extensibility and logic features native to the protocol.
Advantages of REST APIs vs SOAP APIs:
- Flexibility: Although REST is most commonly implemented with HTTP and JSON, developers are by no means obligated to use them. Websites can send back responses using data formats including JSON, XML, HTML, or even plaintext-whatever best suits their needs.
- Speed: Because it tends to use much less overhead, REST APIs are typically significantly faster than SOAP. While the differences might be imperceptible for a single request, the disparity grows larger and larger as you place more and more requests.
- Popularity: REST has reached critical mass on the Internet. Major websites such as Google, Twitter, and YouTube all use REST APIs for users to send and receive messages. Due to this familiarity, it's typically easier for developers to get up and running with REST.
- Scalability: Thanks to their speed and simplicity, REST APIs usually perform very well at scale.
Advantages of SOAP APIs vs REST APIs:
- Formality: SOAP can use WSDL (Web Services Description Language) to enforce the use of formal contracts between the user and the website. SOAP is also inherently compliant with ACID database standards, which ensures that the transactions it performs will be valid even in the event of errors or hardware issues.
- Logic: If a REST API request is unsuccessful, it can only be addressed by retrying until the request successfully goes through. On the other hand, SOAP includes built-in successful/retry logic so that the requesting system knows how to behave.
- Security: SOAP comes with its own security mechanism, WS-Security, built into the protocol. If you want to ensure that your messages are secure, rather than relying on the underlying transport mechanism as does REST, then SOAP may be the right choice.
- Extensibility: In addition to WS-Security, SOAP includes support for other protocols such as WS-Addressing and WS-ReliableMessaging that can define other standards of communication and information exchange.
What is an API?
There are a lot of definitions of the term "API" out there, and many can be confusing. An API (Application Program Interface) is a way for you to get information needed in a consistent format.
You can think of an API as like an interaction between a business and a customer, such as placing an order at a restaurant.
- Customers first read the menu, then they decide what food they would like to order.
- The waiter serves as the "middleman" between the customer and the business. They take the request and present it to the business in a way that's most comprehensible and efficient.
- The business reviews the request and sends back a response to the customer, such as a plate of food.
It's important to note that in this example, the interaction is entirely predictable. When customers go to a restaurant, they can assume that they'll be handed a menu. Then use that menu to place an order, and receive the food they ordered.
In the same way, APIs offer consistency to users who want to query a website for its data. By establishing a common set of rules for exchanging information, APIs make it easier for two parties to communicate.
What is a SOAP API?
SOAP (Simple Object Access Protocol) is an API protocol that uses the XML Information Set specification in order to exchange information.
A standard SOAP message consists of the following XML elements:
- An Envelope element that identifies the document as a valid SOAP message
- An optional Header element that specifies additional requirements for the message, such as authentication.
- A Body element that contains the details of the request or response.
- An optional Fault element that contains information about any errors encountered during the API request and response.
What is a REST API?
REST (Representational State Transfer) is an architectural style for APIs that relies on the HTTP protocol and JSON data format to send and receive messages. REST utilizes CRUD (Create, Retrieve, Update, and Delete) to keep API calls as simple as possible to understand. With its simplicity, developers can understand it whether they are the lead architect or a junior developer just starting.
As highlighted by BBVA some major advantages to REST Visibility, reliability and scalability. REST is very simple to scale and can be reused across several projects. This provides you with the advantage of faster development cycles with far less headaches. It also is independent from being bound to a single language, meaning you can use it with any language such as PHP, JavaScript, or Python.
Despite the major benefits of using REST, SOAP remains the preferred protocol in certain use cases. Some organizations find that SOAP offers the transactional reliability that they're looking for, while others simply continue to use SOAP because they need legacy system support.
Converting SOAP to REST
DreamFactory can convert your SOAP service to REST in minutes. If you have your SOAP service RESTified you can take advantage of the features DreamFactory provides. Like turning security up 10 notches by securing the API with API Keys and Roles to only allow access to people that have the right to it. Even add custom events and business logic by way of our powerful Scripting engine.
Conclusion
For most cases, REST should be considered the "default" option as adoption continues to grow across the web. Most public-facing APIs now use REST, because it consumes less bandwidth and its compatibility with HTTP makes it easier for web browsers to use.
However, you may find that the additional features and security offered by SOAP are enough to sway your decision. In the end, the "right" choice between SOAP and REST will be highly dependent on your own situation.
Even better, the choice of SOAP and REST doesn't have to be between one and the other. If you want to communicate with REST but still need access to legacy SOAP services, DreamFactory offers the ability to add a REST API onto any database or SOAP API.
See how quick and easy it is!
If you have your SOAP service RESTified we can take advantage of the features DreamFactory provides. Like turning security up 10 notches by securing the API with API Keys and Roles to only allow access to people that have the right to it. Even add custom events and business logic by way of our powerful Scripting engine.
If you know REST APIs are the best for you, don’t waste any more time building them. Try it yourself with your own instance of DreamFactory or connect with an API specialist today!
Did you know you can generate a full-featured, documented, and secure REST API in minutes using DreamFactory? Sign up for our free 14 day hosted trial to learn how! Our guided tour will show you how to create an API using an example database provided to you as part of the trial!
Terence Bennett, CEO of DreamFactory, has a wealth of experience in government IT systems and Google Cloud. His impressive background includes being a former U.S. Navy Intelligence Officer and a former member of Google's Red Team. Prior to becoming CEO, he served as COO at DreamFactory Software.