Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.68 KB | None | 0 0
  1. //Wywołanie Metody
  2. <?xml version="1.0"?>
  3. <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
  4. soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
  5.         <soap:Body xmlns:m="demo">
  6.             <m:multiply>
  7.                 <m:val1>3</m:val1>
  8.                 <m:val2>2</m:val2>
  9.             </m:multiply>
  10.         </soap:Body>
  11. </soap:Envelope>
  12. //Odpowiedź
  13. <?xml version="1.0"?>
  14. <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
  15. soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
  16.     <soap:Body xmlns:m="demo">
  17.     <m:multiplyResponse>
  18.         <m:result>6</m:result>
  19.     </m:multiplyResponse>
  20.     </soap:Body>
  21. </soap:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement