//Add various mime type attachments to SOAP message
AttachmentPart ap1 = msg.createAttachmentPart(new DataHandler(url1));
AttachmentPart ap2 = msg.createAttachmentPart(new DataHandler(url2));
AttachmentPart ap3 = msg.createAttachmentPart(new DataHandler(url3));
AttachmentPart ap4 = msg.createAttachmentPart(new DataHandler(url4));
AttachmentPart ap5 = msg.createAttachmentPart(new DataHandler(url5));
ap1.setContentType("text/xml");
ap1.setContentId("<THEXML>");
ap2.setContentType("image/gif");
ap2.setContentId("<THEGIF>");