我在/Sites/swsdp/documentLibrary/Presentations/test1.txt
id有一个 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 文档对相同的方法说:
如果此对象未归档或此对象是根文件夹,则返回此对象的路径列表或空列表