ap1 = msg.createAttachmentPart(in1, "text/xml");
msg.addAttachmentPart(ap1);
InputStream in2 = new FileInputStream(new File(System.getProperty("basedir", ".") +
"/target/test-resources" + File.separator + "axis2.xml"));
ap2 = msg.createAttachmentPart(in2, "text/xml");
msg.addAttachmentPart(ap2);
InputStream in3 = new FileInputStream(new File(System.getProperty("basedir", ".") +
"/target/test-resources" + File.separator + "axis2.xml"));
ap3 = msg.createAttachmentPart(in3, "text/plain");