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
0 answers
Apache CMIS: ORDER BY clause with custom properties
It seems like the query result can be ordered by document custom properties, because I always get Null exception, for example, this query is working:
SELECT * FROM my:document ORDER BY cmis:name
but when I replace cmis:name with something else, for…

Banana
- 1,276
- 2
- 16
- 19
0
votes
2 answers
Where are the OpenCMIS unit tests referred to in the documentation?
I'm implementing CMIS support for my client's document database using OpenCMIS. I've been following the guide here for creating the server. This has mostly gone well, but when I got to the section "testing the server" I couldn't find the jUnit tests…

keiter
- 3,534
- 28
- 38
0
votes
1 answer
Cannot access error while creating a document in an open cmis based server
I have been trying to create a document inside an existing folder using the Open CMIS chemistry server.
While doing so i always get this error
Cannot access…

saurav
- 5,388
- 10
- 56
- 101
0
votes
1 answer
CMIS Hold capability
I am developing a universal CMIS 1.1 client application in JAVA using Apache Chemistry and CXF.
Currently I'm strugling with the hold capability of CMIS described here:
http://docs.oasis-open.org/cmis/CMIS/v1.1/os/CMIS-v1.1-os.html#x1-13200016
When…

Miretz
- 154
- 1
- 12
0
votes
1 answer
Should I grant base.ReadPermissions to Alfresco Consumer?
Short story : I'm thinking of granting this Action to all Consumers. Security-wise, how stupid would that be ?
Long story :
I'd like to use the OpenCmis API to get a User's allowed actions, on a given Alfresco Resource.
This way, I will decide…

yannicuLar
- 3,083
- 3
- 32
- 50
0
votes
2 answers
OpenCMIS + Alfresco make file read-only
I'm developing an Alfresco client which uses the OpenCMIS (Apache Chemistry) to upload files into Alfresco. I would like to know if there is a way to make a single file read-only for everyone.
Thanks,
Miretz

Miretz
- 154
- 1
- 12
0
votes
1 answer
Error in loading file with same name
I am using below script for uploading a file in alfresco but it refuses to create stating conflict.
"\n" +
"

Garvit Jain
- 21
- 1
- 5
0
votes
1 answer
Case Study for CMIS and Alfresco
I am very new to enterprise content management concepts.
I would like to do a small hands or a case study before we embark on the full fledged thing.
My work will be mainly on the client side so I would like to get more experience in consuming…

saurav
- 5,388
- 10
- 56
- 101
0
votes
1 answer
How to differentiate between error due to authorization and wrong server url in OpenCMIS?
By default, the inmemory repository has no username or password. Is there a way I can setup a username and password for it?
If not, the SessionFactory.createSession() always throws a CmisBaseException.
How do i differentiate between failure due to…

Rajath S
- 169
- 1
- 14
0
votes
1 answer
Setting aspects with OpenCMIS for Alfresco
I'm trying to use the Alfresco OpenCMIS Extension for aspects in a Groovy script.
I'd like to be able to set an aspect on a document, but when I try to cast a Document as AlfrescoDocument, it throws an error. I'm pointing Groovy to the Alfresco…

George Hernando
- 2,550
- 7
- 41
- 61
0
votes
0 answers
How to get the server URL back from the Session object in OpenCMIS?
I have a Session object.
I want to get back the server url from it.
IS it possible?

Rajath S
- 169
- 1
- 14
0
votes
1 answer
Creating a site in alfresco using open cmis extension
I want to create a alfresco site using open cmis extension. I researched and found an object type 'F:st:sites' and its properties like 'st:siteVisibility' and 'st:sitePreset'. But I am not very sure that using this we can create a site in alfresco…

Smita
- 21
- 3
0
votes
3 answers
get Working Copy object
Can someone post the code necessary to get the private working copy ID or object from an object that has been checked out previously? I tried to use Alfresco web Scripts to get the working copy, like this:…

Noa
- 315
- 1
- 7
- 31
0
votes
3 answers
Alfresco Create private working copy
I use Alfresco Community4.0.e, chemistry-opencmis-client 0.7.0,primefaces 3.4.1
i want to add "Edit offline" feature to my attachment Files in my web application
to do this I try to use the Web Scripts "checkedout" but I couldn't find the proper way…

Noa
- 315
- 1
- 7
- 31
0
votes
2 answers
Updating a doc in Alfresco, version not incremented
I wrote a method that updates a doc content. It sets the stream for the new content, but the version is not incremented after calling setContentStream on the Document object.
Do I have to do it manually by retrieving existing version, then…

Horia Toma
- 1,099
- 2
- 17
- 29