Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Describe a SOAP service with WSDL.
WSDL Service Definitions 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 WSDL Service Definitions example in a small scratch file, then explain what changed and why.