Hi, Based on sample http://chemistry.apache.org/java/examples/example-create-update.html
I tried to update properties, it works fine for property I create like Date, String, ... But I couldn't update the property "cmis:objectTypeId" nothing append no error, no exception. Code is: CmisObject obj = this.sessionBean.getSession().getObject(documentId); HashMap<String, Object> properties = new HashMap<String, Object>(); properties.put(PropertyIds.OBJECT_TYPE_ID, "laa:Facture"); obj=obj.updateProperties(properties); My question: Could I change the object type id using updateProperties ? If not how could I update the OBJECT_TYPE_ID ? Thanks for your help. Note: - I am using Alfresco 4.0.0 as DM - The new type can be setted (I can change it on Alfresco interface) - Chemistry client 0.4 Willy
