使用OpenCMIS为Alfresco设置方面

时间:2013-09-01 23:02:01

标签: groovy alfresco cmis opencmis

我正在尝试在Groovy脚本中使用Alfresco OpenCMIS扩展。

我希望能够在文档上设置方面,但是当我尝试将文档转换为AlfrescoDocument时,它会抛出错误。我将Groovy指向Alfresco 4.1.5附带的Alfresco Chemistry jar文件

我可以创建一个文档并查看它的属性,但是当我尝试将其转换为AlfrescoDocument时,它会抛出错误。

import org.apache.chemistry.opencmis.commons.*
import org.apache.chemistry.opencmis.commons.data.*
import org.apache.chemistry.opencmis.client.api.*
import org.apache.chemistry.opencmis.client.runtime.*
import org.alfresco.cmis.client.*;
import org.alfresco.cmis.client.impl.*;

def doc = (Document) session.getObject(id);
def adoc = (AlfrescoDocument) doc;

Caught: org.codehaus.groovy.runtime.typehandling.GroovyCastException: Cannot cast object   'org.apache.chemistry.opencmis.client.runtime.DocumentImpl@3e0339' with class  'org.apache.chemistry.opencmis.client.runtime.DocumentImpl' to class 'org.alfresco.cmis.client.AlfrescoDocument'
org.codehaus.groovy.runtime.typehandling.GroovyCastException: Cannot cast object  'org.apache.chemistry.opencmis.client.runtime.DocumentImpl@3e0339' with class 'org.apache.chemistry.opencmis.client.runtime.DocumentImpl' to class 'org.alfresco.cmis.client.AlfrescoDocument'

1 个答案:

答案 0 :(得分:1)

找到答案。 会话需要连接才能使用Alfresco扩展:

parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");