Web Services, JSON




CS257

Chris Pollett

Sep 16, 2020

Outline

XML for Information Exchange

Message Oriented Middleware

Web Services

SOAP

SOAP Example

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> 
<soap:Body>
<GetQuote xmlns="http://www.webserviceX.NET/"> 
<symbol>T</symbol>
</GetQuote>
</soap:Body>
</soap:Envelope>

WSDL Example

REST

RESTful API Architectural Constraints

Below are some architectural constraints that a web service should follow to be considered RESTful.

In-Class Exercise

Web-Services and Databases

JSON