1

我在/Sites/swsdp/documentLibrary/Presentations/test1.txtid有一个 Alfresco 4.2 文档workspace://SpacesStore/626216a1-5f9e-4010-a424-e2e0ec4f2663;1.0

这是我处理 ChangeLog 更改事件的 DotCMIS 代码:

ICmisObject cmisObject = session.GetObject(
    "workspace://SpacesStore/626216a1-5f9e-4010-a424-e2e0ec4f2663;1.0");

if (null != (document = cmisObject as IDocument))
{
    String filename = document.ContentStreamFilename; // returns: "test1.txt"
    List<String> paths = document.Paths;              // returns: Empty list
}

为什么是paths空列表?
为什么不包含/Sites/swsdp/documentLibrary/Presentations/test1.txt

我知道这并不完全相同,但 OpenCMIS 文档对相同的方法说:

如果此对象未归档或此对象是根文件夹,则返回此对象的路径列表或空列表

4

2 回答 2

1

问题是我使用的是 Alfresco 的旧 CMIS URL。

它通过使用新的 URL 格式来解决:

http://<host>/alfresco/api/-default-/public/cmis/versions/1.0/atom
于 2014-03-07T08:55:18.307 回答
0

这不是答案,但我无法添加评论,因为我的代表太低了。

这个对我有用。我使用 Alfresco 4.2 系统获得了文档的路径

顺便说一句,你的代码应该是

String filename = document.ContentStreamFileName;  //camel case
IList<String> paths = document.Paths;  //IList vs List
于 2014-03-07T00:08:06.270 回答