Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://localhost:8080/soap" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  2. <SOAP-ENV:Body>
  3. <ns1:getTeacherResponse>
  4. <return SOAP-ENC:arrayType="ns2:Map[1]" xsi:type="SOAP-ENC:Array">
  5. <item xsi:type="ns2:Map">
  6. <item>
  7. <key xsi:type="xsd:string">teacherID</key>
  8. <value xsi:type="xsd:string">011</value>
  9. </item>
  10. <item>
  11. <key xsi:type="xsd:string">name</key>
  12. <value xsi:type="xsd:string">Miss Piggy</value>
  13. </item>
  14. </item>
  15. </return>
  16. </ns1:getTeacherResponse>
  17.  
  18. array:1 [
  19. 0 => array:2 [
  20. "teacherID" => "011"
  21. "name" => "Miss Piggy"
  22. ]
  23. ]
  24.  
  25. ...
  26. <item>
  27. <teacherID>011</teacherID>
  28. <name>Miss Piggy</name>
  29. </item>
  30. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement