Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. MessageFactory messageFactory = MessageFactory.newInstance();
  2. SOAPMessage soapMessage = messageFactory.createMessage();
  3.  
  4. // Retrieve different parts
  5. SOAPPart soapPart = soapMessage.getSOAPPart();
  6. SOAPEnvelope soapEnvelope = soapMessage.getSOAPPart().getEnvelope();
  7.  
  8. // Two ways to extract body
  9. SOAPBody soapBody = soapEnvelope.getBody();
  10. soapBody = soapMessage.getSOAPBody();
  11.  
  12. //Modify body
  13. // Etc
Add Comment
Please, Sign In to add comment