Skip to content

Instantly share code, notes, and snippets.

@v1bh0r
Last active November 27, 2021 01:32
Show Gist options
  • Save v1bh0r/661eae6d6455c19adae380a1d71b8180 to your computer and use it in GitHub Desktop.
Save v1bh0r/661eae6d6455c19adae380a1d71b8180 to your computer and use it in GitHub Desktop.
XML with namespaces
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
<api:Command xmlns:api="http://someservice.com/core/api">
<api:Body>
<api:Item key="standardRequest">
<IDScoreRequest schemaVersion="3.0" xmlns="http://someservice.com/request">
<Identity>
<FirstName>John</FirstName>
</Identity>
</IDScoreRequest>
</api:Item>
</api:Body>
</api:Command>
</soapenv:Body>
</soapenv:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment