Created
November 25, 2014 21:00
-
-
Save pavelk2/dc8a062f8c47610ef057 to your computer and use it in GitHub Desktop.
Create Person
This file contains 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
<soap:Envelope | |
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" | |
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> | |
<soap:Body xmlns:m="http://ws.document.introsde/"> | |
<m:createPerson> | |
<person> | |
<lastname>John</lastname> | |
</person> | |
</m:createPerson> | |
</soap:Body> | |
</soap:Envelope> |
This file contains 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
<soap:Envelope | |
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" | |
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> | |
<soap:Body xmlns:m="http://ws.document.introsde/"> | |
<m:readPerson> | |
<personId> | |
1554 | |
</personId> | |
</m:readPerson> | |
</soap:Body> | |
</soap:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment