public void setUp() throws IOException, SOAPException {
is = getClass().getResourceAsStream("GreetMeDocLiteralReq.xml");
is2 = getClass().getResourceAsStream("GreetMeDocLiteralSOAPBodyReq.xml");
is3 = getClass().getResourceAsStream("GreetMeDocLiteralSOAPBodyReq.xml");
SOAPMessage msg = MessageFactory.newInstance().createMessage(null, is);
domSource = new DOMSource(msg.getSOAPBody().extractContentAsDocument());
saxSource = new SAXSource(new InputSource(is2));
streamSource = new StreamSource(is3);
soapMsg = MessageFactory.newInstance().createMessage();
assertNotNull(soapMsg);
}