File bombFile = File.createTempFile(getAttachmentPrefix(), ".xml");
BufferedWriter writer = new BufferedWriter(new FileWriter(bombFile));
writer.write(bomb);
writer.flush();
request.setInlineFilesEnabled(false);
attach = request.attachFile(bombFile, false);
attach.setContentType("text/xml;");
currentIndex++;
} catch (IOException e) {
SoapUI.logError(e);
}