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
0
votes
1 answer
What is the difference between transient document and document in OpenCMIS?
I'm not sure of the difference.
When is a transient document is requested, is the document automatically checked out and is it something similar to a private working copy?

Rajath S
- 169
- 1
- 14
0
votes
1 answer
Error when saving document of custom type in Alfresco Share
I got this exception when trying to save a new document of custom type:
org.alfresco.service.cmr.repository.MalformedNodeRefException: 06010026 Invalid node ref - does not contain forward slash: {node.nodeRef}
Here is how the definition of the…

Horia Toma
- 1,099
- 2
- 17
- 29
0
votes
1 answer
How to split a cmis url into repository path and path with respect to repository?
I'm a GSoC'13 intern. I'm working on developing a CMIS UCP for Apache OpenOffice.
I wanted to know how to divide a url into its parts.
To fill the session parameters I need the url + path of the object in repo. separately.
Is there any other way?

Rajath S
- 169
- 1
- 14
0
votes
1 answer
Opencmis CmisPermissionDeniedException
I installed Alfresco 4.2.c Community edition and I'm trying to connect to it using OpenCMIS 0.8.
Here is the code that's executing:
parameters.put(SessionParameter.USER, username);
parameters.put(SessionParameter.PASSWORD, password);
…

Joseda
- 1
- 1
0
votes
0 answers
Alfresco openCmis, create session and unencrypted password
I've been using the opencmis Api to connect a Liferay portal to an Alfresco Repository
The usual way is
Set the session parameters, providing user's login credentials
parameter.put(SessionParameter.USER, "user_name");…

yannicuLar
- 3,083
- 3
- 32
- 50
0
votes
1 answer
How to modify a property of a CMIS document using DotCMIS/OpenCMIS
Let's say I have a document doc and I want to update its barcode metadata to "01234".
The document might have existing other properties, I don't want to lose them.
In case doc already has a barcode, it will be overwritten.
How to do this with…

Nicolas Raoul
- 58,567
- 58
- 222
- 373
0
votes
1 answer
How to know whether a CMIS property is modifiable?
I know how to read the properties of a CMIS Document.
But how to tell which property is modifiable, which property is read-only?
Using OpenCMIS/DotCMIS.
For instance, CMIS Workbench seems to know, because in its Property Editor, it only lists the…

Nicolas Raoul
- 58,567
- 58
- 222
- 373
0
votes
2 answers
How to find if a Document is versionable?
How can I find if a Document is versionable in alfresco using OpenCMIS code?

Dhaval Soni
- 85
- 1
- 10
0
votes
1 answer
Create and update documents while maintaining version history using OpenCMIS
Can someone post the OpenCMIS code necessary to create a new document and then update that document by updating its content stream? I don't want to lose the original document--I want to maintain the version history as new documents are updated. I am…

user2106213
- 73
- 1
- 4
0
votes
1 answer
Document Version on Alfresco
I use createfolder or streamupdate , the problems is , thats version twice , i mean every upload alfresco do:
call to uploadFile....
back to document version
version 0.2
version 0 1
again..
call to uploadFile....
back to document version
version…

Dhaval Soni
- 85
- 1
- 10
0
votes
1 answer
ClientHelper: CmisConnectionException: Cannot initalize Web Services service object
At login to my CMIS-enabled SharePoint 2013 Standard at http://192.168.0.20/_vti_bin/cmissoapwsdl.aspx as Web Service, CMIS Workbench says:
ClientHelper: CmisConnectionException: Cannot initalize Web Services service object
Here is the response of…

Nicolas Raoul
- 58,567
- 58
- 222
- 373
0
votes
1 answer
Setting/Updating multiple document properties in SharePoint 2010 using OpenCMIS
Have tried to search for this almost 'everywhere', but couldn't find a pointer as to how to implement this. Please kindly review my code and offer suggestions on how to set/update ALL documents properties in SharePoint using OpenCMIS. Have created…

Albert
- 23
- 7
0
votes
1 answer
Copying Documents using openCMIS
I am using Mule to access an Alfresco Server. We are using OpenCMIS via the CMIS Connector. I want to make a copy of a document in one folder and add it to another folder. Or just copy the entire folder. I need the copies to be independent of…

user1837371
- 11
- 4
0
votes
1 answer
Fetch usergroups structure from Alfresco using CMIS
Is it possible to retrieve the structure of usergroups from Alfresco using a CMIS session, and if so, how do I do it?
I use GXT (Java) and Apache's chemistry openCMIS API.

Mark Tielemans
- 1,528
- 3
- 20
- 40
0
votes
1 answer
Alfresco+DotCMIS: Folder.GetChildren returns some duplicate items
When I run DotCMIS' Folder.GetChildren on an Alfresco server, I sometimes receive a few duplicate items, for instance:
dir1 dir2 dir3 file1 dir4 dir5 file1 dir4 dir5
You can see that the last 3 items should not be present.
Here is my code, and…

Nicolas Raoul
- 58,567
- 58
- 222
- 373