if (WsdlUtils.isAttachmentInputPart(part, bindingOperation)) {
// TODO - generation of attachment flag could be externalized
// if (iface.getSettings().getBoolean(WsdlSettings.ATTACHMENT_PARTS)) {
XmlCursor c = cursor.newCursor();
c.toLastChild();
c.beginElement(part.getName());
c.insertAttributeWithValue("href", part.getName() + "Attachment");
c.dispose();
// }
} else {