cmis

Alfresco CMIS limit size and time query

佐手、 提交于 2019-12-11 13:52:46
问题 we are developing a front end integrated with Alfresco, we are using CMIS protocol to execute queries against different istances of Alfresco, but we would like to set a limit to a maximum time and a maximum results that a query could give. Is this achievable with CMIS standard, or is only manageable with acl permissions in alfresco.global.properties (blocking lucene)? We would like not to touch these settings in Alfresco. Thanks 回答1: If you are using the AtomPub binding via HTTP directly and

integrate a .net application with alfresco using cmis

南楼画角 提交于 2019-12-11 13:17:42
问题 How to integrate a .net application with alfresco ? How cam cmis be used to do the same? 回答1: You can use Apache Chemistry DotCMIS to perform perform CMIS requests from your .net code. The API is very similar to the Java OpenCMIS API, so you can then find a tutorial on using OpenCMIS to talk to Alfresco and do largely the same thing with DotCMIS. If you're new to CMIS, then Apache Chemistry provides a very handy overview on their site. 回答2: The example at http://svn.alfresco.com/repos

Integrating Alfresco and Liferay to show only one folder

时光总嘲笑我的痴心妄想 提交于 2019-12-11 02:59:15
问题 I'm trying to integrate Alfresco and Liferay. I have configured CMIS integration following this guide. It works without problem. But now, I want to configure that repository to show only one folder. I can set a start folder on "Document and Media Portlet", but if I try to add a folder of the Alfresco repository, it says that there are not folders. Here is a screenshot of "Document and Media portlet" integrated with an Alfresco repository And this is when I try to select one folder of the

What is OpenCMIS Bridge?

╄→尐↘猪︶ㄣ 提交于 2019-12-11 01:14:47
问题 I just noticed this project at Apache OpenCMIS: https://svn.apache.org/repos/asf/chemistry/opencmis/trunk/chemistry-opencmis-bridge There is no description, no documentation, and reading the code does not give many hints about what it is supposed to do. Apache OpenCMIS sometimes releases great software silently, with little communication, so we might be missing another great piece of software here. A Google Search for "OpenCMIS Bridge" returns only source code and the bare download page. 回答1:

Downloading files from Alfresco with MuleSoft CMIS connector

梦想与她 提交于 2019-12-08 08:16:58
问题 I have a little problem with the MuleSoft CMIS connector. I have an application that uploads and downloads files from Alfresco. I connect to Alfresco through AtomPub and use CMIS for all actions towards the Alfresco. The problem is this: I used to get the object from the repository and it worked fine. In my flow I added one component that takes the object from the flow, which is of type DocumentImpl , get InputStream , cast it to an Object and return it. The browser starts the download of the

Downloading files from Alfresco with MuleSoft CMIS connector

元气小坏坏 提交于 2019-12-07 15:32:28
I have a little problem with the MuleSoft CMIS connector. I have an application that uploads and downloads files from Alfresco. I connect to Alfresco through AtomPub and use CMIS for all actions towards the Alfresco. The problem is this: I used to get the object from the repository and it worked fine. In my flow I added one component that takes the object from the flow, which is of type DocumentImpl , get InputStream , cast it to an Object and return it. The browser starts the download of the file but it has no idea what the file is because it has no extension attached to it. And finally the

Using Apache Camel CMIS with Sharepoint 2013

三世轮回 提交于 2019-12-07 00:53:57
问题 I can successfully access Sharepoint 2013 AtomPub interface from Chrome REST clients, the following URL gives me the file I want: http://ourintranet:100/personal/myname/_vti_bin/cmis/rest/5612e38e-a324-4030-9fee-7d05cd9053a4?getContentStream&objectId=4-512 However, using the same URL in the Camel CMIS route gets me HTTP 302 (File not found) and diverts me to an error page. The route I tried is: from("cmis:http://ourintranet:100/personal/myname/_vti_bin/cmis/rest/5612e38e-a324-4030-9fee

How to Delete Document Using CMIS

我的梦境 提交于 2019-12-05 08:08:27
问题 I have Created a External web application using Servlets which is connected to alfresco repository. I am also able to upload document in to the repository, download document from repository. now my requirement is, i have to delete document based on user role. means i want to give delete document access to only site manager. Please provide sample code if you have. Thanks in Advance 回答1: In order to delete a document you first need to see if the user have the role to delete this is why the

Using Apache Camel CMIS with Sharepoint 2013

耗尽温柔 提交于 2019-12-05 05:52:24
I can successfully access Sharepoint 2013 AtomPub interface from Chrome REST clients, the following URL gives me the file I want: http://ourintranet:100/personal/myname/_vti_bin/cmis/rest/5612e38e-a324-4030-9fee-7d05cd9053a4?getContentStream&objectId=4-512 However, using the same URL in the Camel CMIS route gets me HTTP 302 (File not found) and diverts me to an error page. The route I tried is: from("cmis:http://ourintranet:100/personal/myname/_vti_bin/cmis/rest/5612e38e-a324-4030-9fee-7d05cd9053a4?getContentStream&objectId=4-512") .to("file:c:/myFolder") Running Wireshark to see what is going

Most efficient way to detect changes of a remote CMIS repository?

北城以北 提交于 2019-12-05 02:00:22
问题 A remote CMIS repository contains many folders/files. I am writing a software that keeps a local copy of these folders/files in sync. At first run I just download everything recursively. At later runs, I check what has changed, and download any changes. What is the most efficient way to check the remote changes? (additional/removal of files/folders) Most efficient = Least bandwidth usage. I can only use the CMIS protocol, and I can not run any custom software on the remote server. My ideas so