Is that possible to dynamically create a new meta property into aspect from cmis client?
Currently a meta aspect is defined on alfresco server, and it is configured in $[tomcat folder]\shared\classes\alfresco\extension\customModel.xml like:
<aspects>
<aspect name="my:CustomerContentType">
<title>Customer Details</title>
<properties>
<property name="my:CustomerId">
<title>Customer Id</title>
<type>d:text</type>
</property>
<property name="my:CustomerName">
<title>Customer name</title>
<type>d:text</type>
</property>
</properties>
</aspect>
</aspects>
in client side which is using openCMIS client API, a user wants to attach an additional metadata such as "my:address" without pre-defining it in the aspect.
Is that possible to attach the extra metadata information on uploading a document by using openCMIS Client API?
Thanks