Last active
November 27, 2021 01:32
-
-
Save v1bh0r/661eae6d6455c19adae380a1d71b8180 to your computer and use it in GitHub Desktop.
XML with namespaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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