cancel
Showing results for 
Search instead for 
Did you mean: 

how to create aspect meta in cmis client side?

kongfukoala
Champ in-the-making
Champ in-the-making
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
2 REPLIES 2

andy
Champ on-the-rise
Champ on-the-rise
Hi

No.

Type create/delete/update and aspect/secondary type support is part for CMIS 1.1.

Andy

kongfukoala
Champ in-the-making
Champ in-the-making
Another question.

Is that possible to use cmis extension to meet the requirement?

Thanks