añadir elemento imagen, texto,.. a peticion soap

exzipion
08 de Junio del 2006
buenas!

el problema que tengo es que voy a realizar una peticion soap y al cuerpo me gustaria añadirle una imagen y un texto, ahora mismo lo ago asi:

fileName="D:\\MiPix.jpg";
ap = new AttachmentPart(new DataHandler(new FileDataSource(fileName)));
ap.setContentType("image/jpeg");
ap.setContentId("mmhigh-content");
ap.setContentLocation("MiPix.jpg");
call.addAttachmentPart(ap);
elem = factory.createElement("Content");
elem = factory.createElement("Content");
elem.addAttribute(Envelope.createName ("allowadaptions"), "true");
elem.addAttribute(Envelope.createName
("href"), "mmhigh-content");
elem.addAttribute(Envelope.createName
("type"), "MULTIMEDIA_HIGH");
body.addChildElement(elem);

La cosa es que yo asi agrego lo que kiera pero me gustaria saber si hay algun objeto como el AttachmentPart pero que me permita meter mas de uno (por ejemplo 2 images y un texto) y añadirselo al Call como si fuera uno solo.

Saludos y gracias