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
0 answers
CmisObjectNotFoundException on getRootFolder()
I'm getting CMISNotFoundException while accessing the root folder even though i already have many documents uploaded to the repository.I'm able to fetch the repository id but getRootFolder throws error
could not fetch folder due to…

alia
- 459
- 4
- 16
2
votes
1 answer
How to create multiple Repository in OpenCMIS?
I am working on java integrated with CMIS Repository.And i tried with all functions in OpenCMIS Fileshare by making changes in repository.properties as per our Requirement.
Here i want to create multiple repository, now i configured creating…

vinu
- 93
- 8
2
votes
1 answer
Filenet and cmislib. AttributeError: 'RepositoryService' object has no attribute 'binding' error when getObjectByPath
I am trying to get and send data to Filenet.
I am using cmislib 0.6.0. (Python).
The environment I am trying to use has more than one repo.
If I use
repo = client.defaultRepository
I am not get the repo I want (it is not the first of the…

Sergio Escudero
- 143
- 9
2
votes
1 answer
Can we use Crawler in alfresco repository to find content with specific aspect or property?
I want to fine All content with specific aspect and property value in alfresco.
I am trying to traverse All contents in alfresco repository. But Its taking to much time because there are huge number of contents in repository.
So I am thinking to use…

Deepak Talape
- 997
- 1
- 9
- 35
2
votes
1 answer
File Uploading Issue in SAP Hana Cloud Platform Document Service
I have created a Java Servlet to access the HCP repository. I have used sap.ui.unified.FileUploader to upload a file to the above repository.It gives me following error:
409 Conflict, {"exception":"constraint","message":"Mandatory property missing:…

abhhab
- 253
- 2
- 6
- 22
2
votes
1 answer
CmisObjectNotFoundException when trying to access my Alfresco repository
I'm new with CMIS and Alfresco and I got this error when in try to connect to my Alfresco's repository using AtomPUB binding. I have no idea about the source of my problem. Is it unless a functionality ? Is it my Credential ?
When I install it, I…

Ousmane MBINTE
- 664
- 4
- 15
- 37
2
votes
2 answers
How to get thumbnail image of any kind of documents in alfresco using CMIS
I have created a Custom web Application using Java Servlets, and connected to Alfresco Repository using CMIS.
Now my requirement is to built a Library Navigator; for this I have to display the document thumbnail image in front of the document name…

Arjun Patil
- 111
- 9
2
votes
1 answer
Change repository name in Alfresco
Does anyone know how to set/change a repository name in alfresco?
id=-default-, name=, description=, capabilities=Repository Capabilities

Martín Almeida
- 21
- 2
2
votes
1 answer
Alfresco: The item cannot be found after create a link
I am trying to create shortcut or link of a document in Alfresco using apache-chemistry. Using below code I am trying to create link or shortcut
properties = new HashMap();
properties.put(PropertyIds.BASE_TYPE_ID,…

deen
- 2,185
- 7
- 29
- 53
2
votes
1 answer
What is the ideal session timeout for chemistry opencmis session for Alfresco?
I am implementing a thread based application where i will be connecting to Alfresco continuously. I want to avoid a session timeout error so wanted to know at what interval should i clear the session or create a new one. And how long can i continue…

user2361591
- 153
- 1
- 14
2
votes
1 answer
Error in Chemistry OpenCmis while getting root folder
I am using chemistry opencmis version 0.13.0 to connect to alfresco repository.Below is the code snippet
Map parameter = new HashMap();
// user credentials
parameter.put(SessionParameter.USER, "admin");
…

user2361591
- 153
- 1
- 14
2
votes
2 answers
java.lang.NoClassDefFoundError: com/ctc/wstx/stax/WstxInputFactory when using openCMIS
I am trying this new program that gets the document from Alfresco.
Mine is Alfresco version 4.2 and latest openCMIS. Below is my code.
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
SessionFactory…

Sree
- 921
- 2
- 12
- 31
2
votes
2 answers
How can I get Folder detail from document Id in Alfresco using cmis api
I have one question. How can I get Folder Name,Id etc...(Folder details) from document Id in alfresco using cmis api?
Is there any way???
Thanks

user3855589
- 1,113
- 2
- 15
- 43
2
votes
1 answer
CMIS Client JAVA - Alfresco
I'm starting with Alfresco. I'm following a tutorial book Alfresco CMIS, and, to make a CMIS Client JAVA I start by using the Maven Quick Start artifact: mvn archetype:generate -DgroupId=com.my.company.app -DartifactId=my-app…

PRVS
- 1,612
- 4
- 38
- 75
2
votes
2 answers
how to use Alfresco OperationContext to filter out documents?
I have a lot of documents in one of folder in Alfresco. some of them are pdf.
I want to filter all my document on pdf and retrieve only pdf document.
now i am doing it by iterating over a very big list which i get from alfresco through opencmis and…

itro
- 7,006
- 27
- 78
- 121