SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in web services. It relies heavily on XML and is widely used in enterprise environments. An XML Schema defines the structure of an XML document, specifying the elements and attributes, which ensures the data adheres to a defined format. This article provides three practical examples of SOAP API usage with XML Schema that demonstrate how to implement it effectively.
A common use case for SOAP APIs is retrieving weather data from a service. This example illustrates how to request current weather information using a SOAP API.
The client sends a request with the required parameters, and the service responds with the weather data in a structured format.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:weat="http://www.example.com/weather">
<soapenv:Header/>
<soapenv:Body>
<weat:GetWeatherRequest>
<weat:City>New York</weat:City>
<weat:Country>US</weat:Country>
</weat:GetWeatherRequest>
</soapenv:Body>
</soapenv:Envelope>
GetWeatherRequest
would define the City
and Country
elements as required.In an online bookstore, a SOAP API can facilitate order processing, allowing users to place orders and receive confirmations. This example shows how to send an order request.
The client prepares the order details and sends them to the bookstore’s SOAP service.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:book="http://www.example.com/bookstore">
<soapenv:Header/>
<soapenv:Body>
<book:PlaceOrderRequest>
<book:CustomerID>12345</book:CustomerID>
<book:BookID>67890</book:BookID>
<book:Quantity>2</book:Quantity>
</book:PlaceOrderRequest>
</soapenv:Body>
</soapenv:Envelope>
PlaceOrderRequest
specifies that CustomerID
, BookID
, and Quantity
are required elements.Payment gateways often use SOAP APIs to process transactions securely. This example illustrates how to initiate a payment transaction.
The client sends payment details to the gateway, which processes the transaction and responds with the status.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pay="http://www.example.com/payment">
<soapenv:Header/>
<soapenv:Body>
<pay:ProcessPaymentRequest>
<pay:TransactionID>ABC123</pay:TransactionID>
<pay:Amount>100.00</pay:Amount>
<pay:Currency>USD</pay:Currency>
<pay:PaymentMethod>CreditCard</pay:PaymentMethod>
</pay:ProcessPaymentRequest>
</soapenv:Body>
</soapenv:Envelope>
ProcessPaymentRequest
would define TransactionID
, Amount
, Currency
, and PaymentMethod
as required fields.These examples illustrate the versatility of SOAP APIs in various domains, demonstrating how XML Schema can enforce structure and data integrity in web services.