我有一个使用Java的工作代码,使用这种方法在露天使用CMIS创建文档和文件夹。
Folder.createFolder(
Map<string, ?> properties,
List<Policy> policies, List<Ace> addAce, List<Ace> removeAce,
OperationContext context);
我使用Folder.createDocument创建文档(它们具有相同的参数)并使用如下:
AlfrescoFolder.java
parentFolder.createFolder(
AlfrescoUtilities.mapAlfrescoObjectProperties("cmis:folder",
folderName, title, description, tags),
null, null, null,
AlfrescoSession.getSession().getDefaultContext()
);
// AlfrescoSession.getSession() a custom method that we created to
// create a Session variable
的 AlfrescoUtilities.java
public static Map<String, Object> mapAlfrescoObjectProperties(
String objectType, String name, String title, String description,
List<String> tags)
{
Map<String, Object> properties = new HashMap<>();
properties.put(PropertyIds.OBJECT_TYPE_ID,
objectType + ",P:cm:titled,P:cm:taggable");
properties.put(PropertyIds.NAME, name);
if (title != null) properties.put("cm:title", title);
if (description != null) properties.put("cm:description", description);
if (tags != null) properties.put("cm:taggable", tags);
return properties;
}
}
在上面的代码中,objectType参数将是cmis:folder
或cmis:document
,我们发现添加描述的方面是添加P:cm:titled
以添加描述和标题, P:cm:taggable
附加标签。
现在,我正在使用C#开发.NET应用程序。
当我翻译并使用相同的方法时,唯一的问题是它仅在我删除P:cm:tittled; P:cm:taggable
时才起作用
以下是创建属性的当前代码:
AlfrescoUtilities.cs
public static Dictionary<string, object> mapAlfrescoObjectProperties(
string objectType, string name, string title, string description,
List<string> tags)
{
Dictionary<string, object> properties = new Dictionary<string, object>();
properties[PropertyIds.ObjectTypeId] = objectType;
// +",P:cm:titled,P:cm:taggable";
properties[PropertyIds.Name] = name; /*
if (title != null) properties["cm:title"] = title;
if (description != null) properties["cm:description"] = description;
if (tags != null) properties["cm:taggable"] = tags;
*/
return properties;
}
正如您所注意到的,我评论了其他代码。
唯一的工作是objecttypeid
(无论是cmis:文件夹还是cmis:文档)
和名字。
请帮我解决这个问题。这是一个使用.NET 3.5和C#的Windows应用程序。 Alfresco Version是4.2.3
答案 0 :(得分:0)
我们验证了dotCmis&lt; = 0.6.0不支持CMIS 1.1(因此没有对方面属性的原生支持)。
但是,我们成功测试了所描述的方法 http://mail-archives.apache.org/mod_mbox/chemistry-dev/201202.mbox/%3C2D9094AD2E4FBE4B86B8B274D9DB9E081F7A754BF1@SSWPROD1001.synapps-solutions.com%3E
使用低级CMIS API并手动利用Alfresco CMIS扩展。
我们还验证了session.Query(“select * from nm:aspectName”)结果确实包含方面属性。