/* */
/* 80 */ QName xmlName = new QName(elementNamespace, elementLocalName);
/* 81 */ if (log.isDebugEnabled()) log.debug("serialize: [xmlName=" + xmlName + "]");
/* */
/* 83 */ String cid = soapMessage.getCidGenerator().generateFromName(xmlName.getLocalPart());
/* 84 */ AttachmentPart xopPart = soapMessage.createAttachmentPart(data);
/* 85 */ xopPart.addMimeHeader("Content-Id", '<' + cid + '>');
/* 86 */ soapMessage.addAttachmentPart(xopPart);
/* */
/* 88 */ if (log.isDebugEnabled()) log.debug("Created attachment part " + cid + ", with content-type " + xopPart.getContentType());
/* */