IBM Connections Files CMIS:无法在路径/我的文件中找到对象

时间:2012-10-10 10:02:14

标签: lotus cmis ibm-connections dotcmis opencmis

我正在使用DotCMIS连接到Alfresco和FileNet没有问题。

我为registered帐户IBM Connections,通过网络界面添加了一些文件,并尝试连接到其CMIS端点https://greenhouse.lotus.com/files/basic/cmis/my/servicedoc

此URL上的

GetRepositories提供了一个存储库,该存储库又包含以下两个文件夹:

My Files
My Folders

但是当我在同一个存储库中运行GetObjectByPath("/My Files")时,我得到:

DotCMIS.Exceptions.CmisObjectNotFoundException was unhandled
 Message=Not Found
 Source=DotCMIS
 ErrorContent=<?xml version="1.0" encoding="UTF-8"?><lcmis:error xmlns:lcmis="http://www.ibm.com/xmlns/prod/sn/cmis"><lcmis:code>objectNotFound</lcmis:code><lcmis:message>EJPVJ9023E: Unable to find object at path /My Files</lcmis:message><lcmis:userAction></lcmis:userAction></lcmis:error>

尽管Unable to find object at path /My Files是存储库根目录下的文件夹,IBM Connections会说My Files是什么意思?

1 个答案:

答案 0 :(得分:2)

cmis:name属性(“我的文件”,“我的Folers”)已本地化。非英语用户将获得这两个对象的不同cmis:name属性值。

要从这些资源中获取子级,您需要使用每个对象上返回的cmis:path属性构建路径,或使用cmisra:pathSegment构建相对于其父级的路径。

例如,方案中标记为“我的文件”的资源的cmis:对象具有以下内容:

<cmis:propertyString propertyDefinitionId="cmis:path"
 localName="cmis_path" displayName="Path" queryName="cmis:path">
 <cmis:value>/files</cmis:value>
</cmis:propertyString>

因此,要实际获取用户的文件,调用的路径如下:

GetObjectByPath("/files")

要获取用户的文件夹,调用的路径如下:

GetObjectByPath("/collections")

网络是为了确保您使用cmisra:pathSegment或cmis:path属性构建路径,而不是cmis:name,因为这可能在所有方案中都无效(即,如果存储库具有相同名称的兄弟姐妹等。 )。