DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. The Basics of Using REST vs. SOAP

The Basics of Using REST vs. SOAP

The advantages, disadvantages, and use cases between the two ways of creating web services.

Jayashree Kulkarni user avatar by
Jayashree Kulkarni
·
Apr. 03, 16 · Opinion
Like (42)
Save
Tweet
Share
15.31K Views

Join the DZone community and get the full member experience.

Join For Free

As a developer we might have worked with REST as well as SOAP based services. However, when it comes to decide which one to use, many developers are not very clear on the answer. Let’s look at what the differences are in these two ways of creating web services. Before we dig down into the differences here is a short history about REST and SOAP.

REST: REST (REpresentational State Transfer) was introduced and defined in 2000 by Roy Thomas Fielding in his PhD dissertation “Architectural Styles and the Design of Network-based Software Architectures”. Rest facilitates the philosophy of the open web.

SOAP: SOAP (Simple Object Access Protocol) was introduced in 1998 by Dave Winer in collaboration with Microsoft. SOAP is mainly used to address the goals of the enterprise market.

Basic Concepts

RESTSOAP
Makes data available as a resources. E.g. AccountInformation, InvoiceMakes application logic available as a servies. E.g. getAccountInformation, PayInvoice
It’s an architectural style. No strict contract between client and server.It’s a protocol.

Advantages

RESTSOAP
It uses standard HTTP. Easy to implement.Works on top of any communication protocol.
Returns data in many different formats (JSON, XML, etc.)It can be fully described using WSDL.
Better performance and scalability. Reads can be cached.Provides end-to-end reliability and successful/retry logic is built in.
REST allows better support for browser clients due to its support for JSON.Security and authorization are part of the protocol.

Disadvantages

RESTSOAP
Only works on top of HTTP protocol.Hard to implement and not so popular among web and mobile developers.
No built-in standards for security or reliability.Permits XML data format only.
No constraints on the payload.SOAP defines standards to be strictly followed.
    

Requires more bandwidth and resource than REST.

When to Use What

RESTSOAP
When your bandwidth is very limited.When performing transactions that involve multiple calls.
When client and server operates on a web environment.When you want to enforce a strict contract between client and server
Examples: Social Media Service, Web chat serviceExamples: Financial services, telecommunication services

 In nutshell, identify your project need and goal you want to achieve before you pick any of the approaches.

SOAP REST Web Protocols

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Microservices Discovery With Eureka
  • 2023 Software Testing Trends: A Look Ahead at the Industry's Future
  • How and Why You Should Start Automating DevOps
  • Easy Smart Contract Debugging With Truffle’s Console.log

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: