while ((curArchiveEntry = existingInputStream.getNextZipEntry()) != null) {
existingArchiveEntryNames.add(curArchiveEntry.getName().toLowerCase());
getLog().debug("Current File Name: " + curArchiveEntry.getName());
tempOutputStream.putArchiveEntry(curArchiveEntry);
IOUtils.copy(existingInputStream, tempOutputStream);
tempOutputStream.closeArchiveEntry();
}
/*
* Create content.xml within temp archive
*/