//MessageFactory fac = MessageFactory.newInstance();
SOAPMessage msg = fac.createMessage();
SOAPPart soapPart = msg.getSOAPPart();
SOAPEnvelope envelope = soapPart.getEnvelope();
SOAPBody body = envelope.getBody();
SOAPFault sf = body.addFault();
InputStream in1 = new FileInputStream(new File(System.getProperty("basedir", ".") +
"/target/test-resources" + File.separator + "attach.xml"));
ap1 = msg.createAttachmentPart(in1, "text/xml");