// Create a memory part
PackagePart part = container.createPart(this.partName,
this.contentType.toString(), false);
part.relationships = this.relationships;
if (part == null) {
throw new InvalidOperationException(
"Can't create a temporary part !");
}
outStream = part.getOutputStreamImpl();
} else {
outStream = this.getOutputStreamImpl();