Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Exchange structured messages with SOAP envelopes.
SOAP Web Services is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header/>
<soap:Body>
<getLesson xmlns="https://example.com/api">
<slug>xml-basics</slug>
</getLesson>
</soap:Body>
</soap:Envelope>Practice the SOAP Web Services example in a small scratch file, then explain what changed and why.