Last active
April 16, 2019 16:20
-
-
Save tye-shutty/81facb8ca3ab90a2baab92beedb71aba to your computer and use it in GitHub Desktop.
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
<!--Web Services Description Language (WSDL) --> | |
<!--file 1--> | |
<a:element-b xmlns:a="URI-c"> | |
<a:element-d> | |
<a:element-e>f</a:element-e> | |
... | |
</a:element-d> | |
<a:element-d> | |
<a:element-e>g</a:element-e> | |
... | |
</a:element-d> | |
... | |
</a:element-b> | |
<!--file 2--> | |
<h:element-i xmlns:h="URI-j"> | |
... | |
</h:element-i> | |
<!--file 3--> | |
<k:element-l xmlns:k="URI-m" xmlns:a="URI-c" xmlns:h="URI-j"> | |
<k:element-n> | |
<a:element-e>f</a:element-e> | |
<h: ...> ... </h: ...> | |
</k:element-n> | |
... | |
</k:element-l> | |
<!--ns can be specified at any element in the heirarchy--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment