Get Started with SOAP: How to Clean Up Your Web Services

Disclosure: Your support helps keep the site running! We earn a referral fee for some of the services we recommend on this page. Learn more

SOAP is a highly structured messaging protocol used for building web services. It allows software applications systems to exchange structured information with each other over the web. A classic example of this is a web application that creates product advertisements from Amazon data based upon the content of a webpage.

SOAP vs REST

SOAP and REST (Representational State Transfer) are the two primary methods of handling web services. While they are not mutually exclusive in theory, in practice they are competing solutions — you either pick one or the other.

In general, SOAP is a more “heavy-duty” approach, and is typically favored in enterprise and government systems. REST is a more “light-weight” approach, and is typically favored in consumer applications and in products with rapid-development cycles. Moreover, people working in large development environments (Java and .NET) tend to prefer SOAP, while developers working with more agile scripting languages (Ruby, Python, PHP) tend to prefer REST.

There’s more to it than that, of course. You should read The Difference Between SOAP and REST for a more in-depth explanation.

Tutorials

First, before trying to build anything, you’ll want to get your head around basic SOAP principles. These tutorials provide a general overview of SOAP without getting into the details of specific technologies.

Once you have a high-level view of SOAP, you can tackle a few walk-through tutorials. These, of course, are language and platform specific, so you’ll want to use the one that matches your most likely development stack.

Tools

SOAP development is all about the tooling, and (unfortunately) most of the available tutorials either don’t provide enough tooling information, or assume you are using a specific tool set (usually created by the company that published the tutorial). We’re giving you a headstart here with a list of some of the more popular tools for developing, deploying, and testing SOAP web services.

SOAP Development Tools

SOAP web service development generally involves a number of tightly-integrated tools: IDEs, WSDL generators, application servers, and web service frameworks. Some of the tools in this list are “full-stack” tools: they provide a single package which covers a number of developer needs. Others only provide one or two critical functions.

SOAP Development Clients

Building SOAP services is only half the story; something has to actually use those services. Applications that consume SOAP services are called “clients.” The tools listed here will help you access SOAP services from within your client applications. (Several of the SOAP Development Tools also provide client development capabilities.)

  • SOAPEngine, an Objective-C SOAP client for OS X and iOS development;
  • SUDS, a light-weight Python SOAP client;
  • PHP’s SOAP features include the SOAP Client Class;
  • Savon is a “heavy metal” SOAP client for Ruby; there’s also the handsoap library;
  • Javascript SOAP Client is a SOAP client for (usually front-end) JavaScript; for Node.js, use the above-mentioned soap package.

SOAP Testing Clients

These tools will let you access SOAP services for testing and development.

  • SOA Client, a Firefox browser add-on for accessing web services and UDDI registries;
  • Boomerang — SOAP & REST Client, a Chrome extension for testing SOAP and REST services;
  • Generic SOAP Client, an in-browser client for SOAP services — good for quick tests, but not quite suitable for serious development;
  • Storm, a full-featured SOAP test client; also see WcfStorm, which supports other service protocols;
  • WebServiceStudio, another SOAP test client, this one based on .NET Webservice Studio;
  • SoapUI, commercial SOAP testing client, available in a free community edition and a fully-featured, paid premium edition;
  • PocketSoap, a SOAP client for Windows; also see the related WSDL Wizard, which parses WSDL files and presents a GUI representation of available operations.

WSDL-based Code Generators

WSDL documents provide a structured, consumable definition of a SOAP web service. Client applications read the WSDL and use it to generate and validate appropriate calls to the service. WSDL code generators automatically convert WSDL documents into a set of callable classes and methods which provide an in-language API to the web service.

  • Easy WSDL, “The World’s leading WSDL client generator,” for use with Android and iOS development;
  • Wsdl2phpgenerator, a WSDL code generator for PHP.

Several of the above-mentioned full-stack and client development tools include WSDL-based code generation as well.

Books about SOAP

Online tutorials are really helpful for getting started. But, due to the complexities of SOAP architecture, the best way to really get a handle on the entire ecosystem is one of the excellent books on the topic.


Further Reading and Resources

We have more guides, tutorials, and infographics related to web development:

Ultimate Guide to Web Hosting

If you are going to be creating web applications, chances are that you are going to need to host them somewhere. Check out our Ultimate Guide to Web Hosting. It will explain everything you need to know in order to make an informed choice.

Adam Michael Wood

About Adam Michael Wood

Adam specializes in developer documentation and tutorials. In addition to his writing here, he has authored engineering guides and other long-form technical manuals. Outside of work, Adam composes and performs liturgical music. He lives with his wife and children in California.

Comments

Thanks for your comment. It will show here once it has been approved.

Your email address will not be published. Required fields are marked *