private void initRootPart(String requestContent, MimeMultipart mp, boolean isXOP) throws MessagingException {
MimeBodyPart rootPart = new PreencodedMimeBodyPart("8bit");
rootPart.setContentID(AttachmentUtils.ROOTPART_SOAPUI_ORG);
mp.addBodyPart(rootPart, 0);
DataHandler dataHandler = new DataHandler(new MockResponseDataSource(this, requestContent, isXOP));
rootPart.setDataHandler(dataHandler);
}