Advertisement
pellekrogholt

Untitled

Apr 12th, 2011
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.36 KB | None | 0 0
  1. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  2.   <SOAP-ENV:Header/>
  3.   <SOAP-ENV:Body>
  4.     <itu:addPerson xmlns:itu="http://hello.samples.smds2011.itu.dk/">
  5.       <arg0>
  6.         <person/>
  7.         <name>Name Name</name>
  8.         <address>Address dfsdf 8898</address>
  9.         <phone>90099909</phone>
  10.         <zip>79798</zip>
  11.       </arg0>
  12.     </itu:addPerson>
  13.   </SOAP-ENV:Body>
  14. </SOAP-ENV:Envelope>
  15.  
  16. <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
  17.   <S:Header/>
  18.   <S:Body>
  19.     <ns2:addPersonResponse xmlns:ns2="http://hello.samples.smds2011.itu.dk/">
  20.       <return>Name Name added to the phone book service</return>
  21.     </ns2:addPersonResponse>
  22.   </S:Body>
  23. </S:Envelope>
  24.  
  25. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
  26.   <SOAP-ENV:Header/>
  27.   <SOAP-ENV:Body>
  28.     <itu:getPerson xmlns:itu="http://hello.samples.smds2011.itu.dk/">
  29.       <arg0>Name Name</arg0>
  30.     </itu:getPerson>
  31.   </SOAP-ENV:Body>
  32. </SOAP-ENV:Envelope>
  33.  
  34. <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
  35.   <S:Header/>
  36.   <S:Body>
  37.     <ns2:getPersonResponse xmlns:ns2="http://hello.samples.smds2011.itu.dk/">
  38.       <return>Name: Name Name
  39. Address: Address dfsdf 8898
  40. Zip: 79798
  41. Phone: 90099909 picked from the the phone book service</return>
  42.     </ns2:getPersonResponse>
  43.   </S:Body>
  44. </S:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement