Hi,
I need to update or insert new properties to pptx documents.
I did it with docx and it worked but it doesn't work for pptx.
Here the function that I use for docx and pptx:
public String updateMSProperties(NodeRef noderefToUpdate, String properties, String values, String typeFile) throws Exception
{
log.fatal("noderefToUpdate "+ noderefToUpdate);
log.fatal("typeFile "+ typeFile);
log.fatal("updateMSProperties JAVA");
log.fatal("typeFile: "+typeFile);
String docx = new String("docx");
String pptx = new String("pptx");
WordprocessingMLPackage wordMLPackage = null;
PresentationMLPackage pptMLPackage ...