Guest User

Untitled

a guest
Jan 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  2. <s:Header>
  3. <h:FooListHeader xmlns:h="http://foo.foo.com/Hello" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  4. <h:FooList>
  5. <h:FooStatement>
  6. <h:Title>Foo</h:Title>
  7. <h:Value>123</h:Value>
  8. </h:FooStatement>
  9. </h:FooList>
  10. </h:FooListHeader>
  11. </s:Header>
  12. <s:Body>
  13. <GetFooRequestType xmlns="http://foo.foo.com/Hello">
  14. <MessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  15. <ConFooRequest/>
  16. </MessageRequest>
  17. </GetFooRequestType>
  18. </s:Body>
  19. </s:Envelope>
  20.  
  21. <soapenv:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:foo="http://foo.foo.com/Hello">
  22. <soapenv:Header>
  23. <foo:FooListHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  24. <foo:FooList>
  25. <foo:FooStatement>
  26. <foo:Title>Foo</foo:Title>
  27. <foo:Value>123</foo:Value>
  28. </foo:FooStatement>
  29. </foo:FooList>
  30. </foo:FooListHeader>
  31. </soapenv:Header>
  32. <soapenv:Body>
  33. <foo:GetFooRequestType xmlns="http://foo.foo.com/Hello">
  34. <foo:MessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  35. <foo:ConFooRequest/>
  36. </foo:MessageRequest>
  37. </foo:GetFooRequestType>
  38. </soapenv:Body>
  39. </soapenv:Envelope>
Add Comment
Please, Sign In to add comment