cmis-workbench

Documentum cmis restful integration with android?

喜你入骨 提交于 2019-12-24 20:27:18
问题 I want to implement documentum cmis restful api with android. So where i can get all the materialsand learn about it . I am very new to this and want to understand documentum and cmis restful api. So that i can integrate with android. 回答1: Your starting point for CMIS should be the CMIS specification. http://docs.oasis-open.org/cmis/CMIS/v1.1/CMIS-v1.1.html Then the implementation of CMIS specification in Chemistry project https://chemistry.apache.org/ There is a specific Android client for

Login error to Sharepoint 2013 repository using openCMIS Workbench

谁说胖子不能爱 提交于 2019-12-21 21:39:43
问题 using the OpenCMIS Workbench 0.8.0, I can load the sharepoint 2013 (GA) repositories fine but get the following error when I try to login to one of the repositories such as Documents: "Invalid Argument: One or more of the input parameters to the service method is missing or invalid" Found a blog with some instructions but those didn't work for me: http://dhartford.blogspot.com/2013/01/sharepoint-2013-w-apache-chemistry-cmis.html?showComment=1359398536275#c6910049622927723676 Note: Here is the

Alfresco CMIS query checking for NULL/Blank

吃可爱长大的小学妹 提交于 2019-12-14 03:58:32
问题 I want to check whether the Aspect property is present or not and if present it should not be blank... On some docs the aspect applied but no properties are populated. On some docs all the properties of aspect are populated but few are blank. I tried below queries.. select * from myType:myCase as d join myAspect:myTest as p on d.cmis:objectId = p.cmis:objectId WHERE CONTAINS(d, 'PATH:"//app:company_home/cm:DROP-FOLDER/*"') AND p:myAspect:caseId = '' I also tried p:myAspect:caseId = <> '' **p

Change Log NULL records in CMIS Workbench - SharePoint 2013 SP1

落花浮王杯 提交于 2019-12-12 03:34:54
问题 Change Log show null records when using AtomPub I am using CMIS Workbench 0.13.0 to connect to a SharePoint 2013 server (SP1) via: AtomPub endpoint i.e. http://<host>/_vti_bin/cmis/rest?getRepositories Web Service endpoint i.e. http://<host>/_vti_bin/cmissoapwsdl.aspx DotCMIS 0.7 (similiar problem) session.GetContentChanges(token, True, 1000).ChangeEventList [1/1/0001 12:00:00 AM] Created [1/1/0001 12:00:00 AM] Created [1/1/0001 12:00:00 AM] Created ... Postman (GET) of change log endpoint

How to Update Document properties using CMIS

浪子不回头ぞ 提交于 2019-12-01 09:54:38
问题 I have one external web application through that i connected to alfresco repository using CMIS. I am already able to upload document in to repository or able to download n view document. Now my requirement is, I have to Update Specific Documents Properties. So can any one please provide sample code or steps to update document properties Using CMIS. Thanks in Advance... 回答1: try this worked fine for me Session session = getSession(serverUrl, username, password); Document targetFile = (Document

Apache CMIS: Paging query result

China☆狼群 提交于 2019-11-28 13:01:29
Recently I've started using Apache CMIS and read the official documentation and examples. I haven't noticed anything about paging query results. There is an example showing how to list folder items, setting maxItemsPerPage using operationContext, but it seems that operationContext can be used inside getChilder method: int maxItemsPerPage = 5; int skipCount = 10; CmisObject object = session.getObject(session.createObjectId(folderId)); Folder folder = (Folder) object; OperationContext operationContext = session.createOperationContext(); operationContext.setMaxItemsPerPage(maxItemsPerPage);