Apache Chemistry OpenCMIS is a collection of Java libraries, frameworks and tools around the CMIS specification. The goal of OpenCMIS is to make CMIS simple for Java client and server developers. It hides the binding details and provides APIs and SPIs on different abstraction levels. It also includes test tools for content repository developers and client application developers.
Questions tagged [opencmis]
277 questions
2
votes
1 answer
CMIS QL get folder path using CONTAIN (ALL:)
I am having a problem retrieving the path of a folder which contains '(' and ')' when I do a query in CMIS.
how can i get the below working ?
SELECT cmis:path FROM cmis:folder WHERE IN_TREE('a53471aa-b447-4fdd-a451-4a2beb494226') AND…

tosi
- 1,873
- 2
- 18
- 38
2
votes
1 answer
Apache Chemistry CMIS session.createDocument vs folder.createDocument
I would like someone to give me the difference between the session createDocument and folder createDocument methods.
Also within this context is there a sample on how I could use document appendContentStream() method, I was struggling to see an…

tosi
- 1,873
- 2
- 18
- 38
2
votes
1 answer
How to close OpenCMIS connections
I am using the Apache Chemistry API to create client sessions. The SessionFactory allows the creation of sessions but does not provide a way of closing them. What is the correct way to go about closing created sessions?

net_j
- 205
- 2
- 9
2
votes
2 answers
CMIS session.queryObjects doesn't return aspects
I have a couple test functions I've written to illustrate a problem (or at least some behavior that I don't understand). I am just doing some basic CMIS queries on an Alfresco 4.2.e community repository, but am getting some unexpected results…

BrianV
- 105
- 7
2
votes
1 answer
Get Documentum workflows (inbox, tasks) via CMIS?
I am making a client for EMC Documentum with OpenCMIS in Java. I can create, view and get properties of documents, but I don't know how to get all workflow tasks.
Do you have any idea how to get all inbox (workflow, tasks) for a specific user? Can I…

Klemenko
- 704
- 1
- 10
- 21
2
votes
1 answer
OpenCMIS TCK test troubleshooting
I'm implementing a CMIS server using OpenCMIS.
I use TCK tests to check CMIS compliance. The error messages of the compliance checks are very short. There is no info about the call sequence or at least the last call that causes the compliance…

thersch
- 1,316
- 12
- 19
2
votes
2 answers
Creating content of custom type in Share
I am trying to have Share let the user create new documents based on a custom type I implemented (see the excellent documentation here )
I had the type implemented and defined aspects, but I can't see a clear way to configure Share in order to…

Horia Toma
- 1,099
- 2
- 17
- 29
2
votes
2 answers
Update alfresco content type through chemistry OpenCMIS
I am trying to update the content type of files in alfresco through OpenCMIS.
The CMIS workbench shows the type in the types windows, with as only disabled switch 'Policy controlable'. Its local name is document, queryname is prefix:document and…

Mark Tielemans
- 1,528
- 3
- 20
- 40
2
votes
2 answers
Upload File with OpenCMIS has no content
I'm trying to upload a file into my Alfresco repository using Apache Chemistry OpenCMIS.
The file is created and the properties are correct but there is no content, the file is 0 bytes. I've double checked and there is nothing wrong with the source…

dumazy
- 13,857
- 12
- 66
- 113
2
votes
5 answers
Login error to Sharepoint 2013 repository using openCMIS Workbench
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…

Nic
- 151
- 1
- 2
- 9
2
votes
1 answer
Create Relationship between two files (Alfresco CE 4.2.c) using CMIS
My model looks like this:
I have two folders(HTMLs) & (Images). Tons of files are inserted inside images folder and small part of business use case I am trying to implement is that when client asks for say chapter1.html then all the associated…

Swan
- 21
- 1
- 3
2
votes
1 answer
Error uploading file to Alfresco using Java, CmisConstraintException:Conflict
I am getting an error uploading a file to repository using Java. I am using Alfresco 4.0e. I am able to connect to the repository, located on Unix server, from my Application, developed in struts, from localhost.
I am using OpenCMIS to connect and…

vamsi krishna
- 21
- 2
2
votes
3 answers
OpenCMIS supported ECM
We are planning to develop an application that can work with any ECM systems. SO we planned to use CMIS.
As our application is in Java, I came across openCMIS. It seemed all useful.
But now I need to know, which all repositories are…

jeffreydare
- 51
- 3
1
vote
0 answers
Problem of dependency from OpenCMIS and other libs
in a project I am having a dependency problem that is driving me crazy.
We are talking about a Maven project, which has several modules
WebModulo.war
DAO.jar
RESTModule.war
EAR
otherModule
REST services are implemented using javax rs.
In the DAO…

vecio88
- 95
- 1
- 11
1
vote
1 answer
OpenCMIS searching for all Documents
I'm trying to do findAllByName functionality through OpenCMIS over an Alfresco DMS. Basically it's supposed to find all Documents with a certain name.
Currently I've tried to do a recursive search, which is unfortunately very costly.
private…

Dropout
- 13,653
- 10
- 56
- 109