0

我正在尝试将 Alfresco OpenCMIS Extension 用于 Groovy 脚本中的方面。

我希望能够在文档上设置一个方面,但是当我尝试将文档转换为 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'
4

1 回答 1

1

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

parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");
于 2013-09-01T23:41:02.290 回答