<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: add Aspect on custom type by cmis error in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10213#M4527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Angel Borroy,&lt;/P&gt;&lt;P&gt;Thanks for reply,&lt;/P&gt;&lt;P&gt;I've already try as your help. But when I run application, system return&amp;nbsp;Property 'sc:version' is neither an object type property nor an aspect property!&lt;/P&gt;&lt;P&gt;It's seem the system do not realize property sc:version of aspect&amp;nbsp;&lt;SPAN&gt;P:sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated. Please give me some advise?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Many thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session cmisSession = getCmisSession();&lt;/P&gt;&lt;P&gt;String fileName = file.getName();&lt;/P&gt;&lt;P&gt;if (props == null) {&lt;BR /&gt; props = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis:baseTypeId") == null) {&lt;BR /&gt; props.put("cmis:baseTypeId", "cmis:document");&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId") == null) {&lt;BR /&gt; props.put("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId", "D:sc:doc");&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis:name") == null) {&lt;BR /&gt; props.put("cmis:name", fileName);&lt;BR /&gt; }&lt;BR /&gt; props.put("sc:campaign", "Learning CMIS");&lt;BR /&gt; &lt;BR /&gt; ContentStream contentStream = cmisSession.getObjectFactory().&lt;BR /&gt; createContentStream(&lt;BR /&gt; fileName,&lt;BR /&gt; file.length(),&lt;BR /&gt; fileType,&lt;BR /&gt; new FileInputStream(file)&lt;BR /&gt; );&lt;/P&gt;&lt;P&gt;Document document = null;&lt;BR /&gt; try {&lt;BR /&gt; document = parentFolder.createDocument(props, contentStream, null);&lt;BR /&gt; System.out.println("Created new document: " + document.getId());&lt;BR /&gt; } catch (CmisContentAlreadyExistsException ccaee) {&lt;BR /&gt; document = (Document) cmisSession.getObjectByPath(parentFolder.getPath() + "/" + fileName);&lt;BR /&gt; System.out.println("Document already exists: " + fileName);&lt;BR /&gt; &lt;BR /&gt; addAspectToExistingDocument(document);&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;private static final String SECONDARY_OBJECT_TYPE_IDS_PROP_NAME = "cmis:secondaryObjectTypeIds";&lt;/P&gt;&lt;P&gt;public void addAspectToExistingDocument(Document document) {&lt;BR /&gt; String aspectName = "P:sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated";&lt;BR /&gt; if (document != null) {&lt;BR /&gt; List&amp;lt;Object&amp;gt; aspects = document.getProperty(SECONDARY_OBJECT_TYPE_IDS_PROP_NAME).getValues();&lt;BR /&gt; if (!aspects.contains(aspectName)) {&lt;BR /&gt; aspects.add(aspectName);&lt;BR /&gt; Map&amp;lt;String, Object&amp;gt; properties = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt; properties.put(SECONDARY_OBJECT_TYPE_IDS_PROP_NAME, aspects);&lt;BR /&gt; properties.put("sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roduct", "MC High class");&lt;BR /&gt; properties.put("sc:version", "2.1");&lt;BR /&gt; Document updatedDocument = (Document) document.updateProperties(properties);&lt;BR /&gt; System.out.println("Added aspect " + aspectName + " to ");&lt;BR /&gt; } else {&lt;BR /&gt; System.out.println("Aspect " + aspectName + " is already applied to ");&lt;BR /&gt; }&lt;BR /&gt; } else {&lt;BR /&gt; System.out.println("Document is null, cannot add aspect to it!");&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2017 02:50:11 GMT</pubDate>
    <dc:creator>phong_van</dc:creator>
    <dc:date>2017-06-16T02:50:11Z</dc:date>
    <item>
      <title>add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10211#M4525</link>
      <description>Dear everyone,I'm using alfresco 5 and cmis 1.1. I have model with 2 aspect&amp;nbsp;sc&lt;IMG id="smileytongue" class="emoticon emoticon-smileytongue" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated and&amp;nbsp;sc:webable .I've writen cmis code to create new document with aspect as&lt;IMG id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;ession cmisSession = getCmisSession();String fileName = file.getName();// create a map of properties if one wasn't passed in if (</description>
      <pubDate>Thu, 15 Jun 2017 02:12:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10211#M4525</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-15T02:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10212#M4526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://gist.github.com/jpotts/7242070" title="https://gist.github.com/jpotts/7242070" rel="nofollow noopener noreferrer"&gt;Adding an aspect (known in CMIS 1.1 as a "secondary type") by modifying cmis:secondaryObjectTypeIds. This requires that …&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:29:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10212#M4526</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2017-06-15T17:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10213#M4527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Angel Borroy,&lt;/P&gt;&lt;P&gt;Thanks for reply,&lt;/P&gt;&lt;P&gt;I've already try as your help. But when I run application, system return&amp;nbsp;Property 'sc:version' is neither an object type property nor an aspect property!&lt;/P&gt;&lt;P&gt;It's seem the system do not realize property sc:version of aspect&amp;nbsp;&lt;SPAN&gt;P:sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated. Please give me some advise?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Many thanks &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session cmisSession = getCmisSession();&lt;/P&gt;&lt;P&gt;String fileName = file.getName();&lt;/P&gt;&lt;P&gt;if (props == null) {&lt;BR /&gt; props = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis:baseTypeId") == null) {&lt;BR /&gt; props.put("cmis:baseTypeId", "cmis:document");&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId") == null) {&lt;BR /&gt; props.put("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId", "D:sc:doc");&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis:name") == null) {&lt;BR /&gt; props.put("cmis:name", fileName);&lt;BR /&gt; }&lt;BR /&gt; props.put("sc:campaign", "Learning CMIS");&lt;BR /&gt; &lt;BR /&gt; ContentStream contentStream = cmisSession.getObjectFactory().&lt;BR /&gt; createContentStream(&lt;BR /&gt; fileName,&lt;BR /&gt; file.length(),&lt;BR /&gt; fileType,&lt;BR /&gt; new FileInputStream(file)&lt;BR /&gt; );&lt;/P&gt;&lt;P&gt;Document document = null;&lt;BR /&gt; try {&lt;BR /&gt; document = parentFolder.createDocument(props, contentStream, null);&lt;BR /&gt; System.out.println("Created new document: " + document.getId());&lt;BR /&gt; } catch (CmisContentAlreadyExistsException ccaee) {&lt;BR /&gt; document = (Document) cmisSession.getObjectByPath(parentFolder.getPath() + "/" + fileName);&lt;BR /&gt; System.out.println("Document already exists: " + fileName);&lt;BR /&gt; &lt;BR /&gt; addAspectToExistingDocument(document);&lt;BR /&gt; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;private static final String SECONDARY_OBJECT_TYPE_IDS_PROP_NAME = "cmis:secondaryObjectTypeIds";&lt;/P&gt;&lt;P&gt;public void addAspectToExistingDocument(Document document) {&lt;BR /&gt; String aspectName = "P:sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated";&lt;BR /&gt; if (document != null) {&lt;BR /&gt; List&amp;lt;Object&amp;gt; aspects = document.getProperty(SECONDARY_OBJECT_TYPE_IDS_PROP_NAME).getValues();&lt;BR /&gt; if (!aspects.contains(aspectName)) {&lt;BR /&gt; aspects.add(aspectName);&lt;BR /&gt; Map&amp;lt;String, Object&amp;gt; properties = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt; properties.put(SECONDARY_OBJECT_TYPE_IDS_PROP_NAME, aspects);&lt;BR /&gt; properties.put("sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roduct", "MC High class");&lt;BR /&gt; properties.put("sc:version", "2.1");&lt;BR /&gt; Document updatedDocument = (Document) document.updateProperties(properties);&lt;BR /&gt; System.out.println("Added aspect " + aspectName + " to ");&lt;BR /&gt; } else {&lt;BR /&gt; System.out.println("Aspect " + aspectName + " is already applied to ");&lt;BR /&gt; }&lt;BR /&gt; } else {&lt;BR /&gt; System.out.println("Document is null, cannot add aspect to it!");&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 02:50:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10213#M4527</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-16T02:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10214#M4528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="http://docs.alfresco.com/5.1/tasks/versionable-make.html" title="http://docs.alfresco.com/5.1/tasks/versionable-make.html" rel="nofollow noopener noreferrer"&gt;Making all content versionable | Alfresco Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 07:28:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10214#M4528</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2017-06-16T07:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10215#M4529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Angel Borrory,&lt;/P&gt;&lt;P&gt;Thanks your help,&lt;/P&gt;&lt;P&gt;But I created model by admin tool on link&amp;nbsp;&lt;A class="link-titled" href="http://172.17.200.45/share/page/console/admin-console/custom-model-manager" title="http://172.17.200.45/share/page/console/admin-console/custom-model-manager" rel="nofollow noopener noreferrer"&gt;http://MyIP/share/page/console/admin-console/custom-model-manager&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I check in folder&amp;nbsp;&lt;SPAN style="color: #58595b; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN class="" style="background-color: #ffffff; font-size: 14px;"&gt;$TOMCAT_HOME/shared/classes/alfresco/extension there are no models directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px; background-color: #ffffff;"&gt;So please give some instruction, Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 09:50:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10215#M4529</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-16T09:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10216#M4530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just linked to make you note that &lt;STRONG&gt;versionable&lt;/STRONG&gt; aspect is required to set. You can add it to your aspect lists.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 11:05:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10216#M4530</guid>
      <dc:creator>angelborroy</dc:creator>
      <dc:date>2017-06-16T11:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10217#M4531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very thanks for your help,&lt;/P&gt;&lt;P&gt;but when a read your link i'm try to add versionable aspect to aspect list, but I can't. It seem I only create new aspect to custom model&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/alfresco/14518_add Aspect.png" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2017 06:07:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10217#M4531</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-18T06:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10218#M4532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I try aspect P:cm:titled,&lt;/P&gt;&lt;P&gt;this is my code&lt;/P&gt;&lt;P&gt;Session cmisSession = getCmisSession();&lt;/P&gt;&lt;P&gt;String fileName = file.getName();&lt;/P&gt;&lt;P&gt;// create a map of properties if one wasn't passed in&lt;BR /&gt; if (props == null) {&lt;BR /&gt; props = new HashMap&amp;lt;String, Object&amp;gt;();&lt;BR /&gt; }&lt;BR /&gt; if (props.get("cmis:baseTypeId") == null) {&lt;BR /&gt; props.put("cmis:baseTypeId", "cmis:document");&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;// Add the object type ID if it wasn't already&lt;BR /&gt; if (props.get("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId") == null) {&lt;BR /&gt; props.put("cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId", "D:sc:doc,P:cm:titled");&lt;BR /&gt; // ,P:sc&lt;img id="smileytongue" class="emoticon emoticon-smileytongue" src="https://connect.hyland.com/i/smilies/16x16_smiley-tongue.png" alt="Smiley Tongue" title="Smiley Tongue" /&gt;roductRelated&lt;BR /&gt; }&lt;BR /&gt; // Add the name if it wasn't already&lt;BR /&gt; if (props.get("cmis:name") == null) {&lt;BR /&gt; props.put("cmis:name", fileName);&lt;BR /&gt; }&lt;BR /&gt; props.put("sc:campaign", "OanhLT.HO");&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; props.put("cm:title", "MC High class");&lt;BR /&gt; &lt;BR /&gt; ContentStream contentStream = cmisSession.getObjectFactory().createContentStream(fileName, file.length(),&lt;BR /&gt; fileType, new FileInputStream(file));&lt;/P&gt;&lt;P&gt;Document document = null;&lt;BR /&gt; try {&lt;BR /&gt; document = parentFolder.createDocument(props, contentStream, null);&lt;BR /&gt; System.out.println("Created new document: " + document.getId());&lt;BR /&gt; } catch (CmisContentAlreadyExistsException ccaee) {&lt;BR /&gt; document = (Document) cmisSession.getObjectByPath(parentFolder.getPath() + "/" + fileName);&lt;BR /&gt; System.out.println("Document already exists: " + fileName);&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The document upload is OK, but when I check document in repository the property "Title" is empty. When I check mangage aspect the system show that versionable aspect already applied.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://connect.hyland.com/legacyfs/online/alfresco/14525_versionable.png" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jun 2017 14:47:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10218#M4532</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-18T14:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: add Aspect on custom type by cmis error</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10219#M4533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear everyone,&lt;/P&gt;&lt;P&gt;I've just resloved &amp;nbsp;my problem. The problem I'm using code alfresco extention =&amp;gt; So I try to remove this line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in method create session the problem is resloved.&lt;/P&gt;&lt;P&gt;Once againt, I'm very thanks for&amp;nbsp;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;Angel Borroy!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 10:30:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/add-aspect-on-custom-type-by-cmis-error/m-p/10219#M4533</guid>
      <dc:creator>phong_van</dc:creator>
      <dc:date>2017-06-19T10:30:30Z</dc:date>
    </item>
  </channel>
</rss>

