entryList.add(entry);
// Format and check result
ByteArrayOutputStream ostream = new ByteArrayOutputStream();
m_formatter.format(root, m_message, new StreamOutput(ostream));
ostream.close();
ByteArrayInputStream istream = new ByteArrayInputStream(ostream.toByteArray());
ZipInputStream zipStream = new ZipInputStream(istream);
ZipEntry zipEntry;