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
CMIS with multiple repositories?
I am working on a Java solution which integrates with CMIS repositories. Having chosen OpenCMIS as my open source library, am trying to ensure all test scenarios are covered. I have explored few of the repositories (Alfresco, Chemistry InMemory,…

Pavan Kumar
- 4,182
- 1
- 30
- 45
0
votes
2 answers
How do I generate alfresco sites where different users can see different content?
I'd like to build a site which contains a few folders for different teams. However, there is one team that is common to one folder on all sites. I do not want that team to be allowed to see the content of the other folders. I tried creating a folder…

David Boshton
- 2,555
- 5
- 30
- 51
0
votes
1 answer
Why is cmis returning an error on datalist item creation in alfresco?
I have the following piece of code
try {
dataList.asInstanceOf[AlfrescoFolder].createItem(
Map("cmis:objectTypeId" -> "D:dl:contact",
"cmis:name" -> (data.emailAddress + "_Newsletter_sub"),
…

Dark Star1
- 6,986
- 16
- 73
- 121
0
votes
0 answers
open Lotus Notes and attache file from website
I want to do something like this:
click on a link or button on an website (especially on Alfresco Share)
the email client (IBM Notes) should be opened and automatically attach a document from the repository of Alfresco (document management…

Pali
- 1,337
- 1
- 14
- 40
0
votes
2 answers
Retrieving a Document from a QueryResult with OpenCMIS
I'm using the Apache Chemistry OpenCMIS java library. Given a QueryResult (e.g. I found a document or a bunch of documents by searching on metadata properties), is this a reasonable way to retrieve the Document object itself? Or is there a more…

Michael Lucas
- 733
- 1
- 8
- 23
0
votes
2 answers
Setting up OpenCMIS InMemory Repository
I´m trying to set up the OpenCMIS InMemory Repository following the instructions from Apache but I keep getting the following error when running the maven command mvn clean install -Dmaven.test.skip=true:
[INFO] 4 errors
[INFO]…

carcaret
- 3,238
- 2
- 19
- 37
0
votes
1 answer
Exporting documents from Ephesoft Comunity to Alfresco via CMIS Plugin
I'm trying to configure an Ephesoft Community Batch Class to export Documents to Alfresco by using CMIS.
I have followed Ephesoft documentation with no luck.
If I carry out a scanning process, it fails on Export module. Log file says that there is…

rubenfa
- 831
- 1
- 7
- 23
0
votes
1 answer
Error while connecting to Alfresco repository using opencmis and SSO
I have an Alfresco server running on xx.xx.xx.101, I am connecting my Java workspace to it, my workspace and alfresco have been wired using SSO . So whenever I click on any link in jsp page, without authenticating I will be redirecting to Alfresco…

user2361591
- 153
- 1
- 14
0
votes
2 answers
CMIS 1.1 - Create Document via Browser binding (Alfresco)
I want to use the browser binding introduced by CMIS 1.1 on Alfresco 4.2.
I can find a document with a SQL92 query but I cannot create a new one:
POST http://localhost:8180/alfresco/api/-default-/public/cmis/versions/1.1/browser?succinct=true…

Johan Le Lan
- 47
- 1
- 8
0
votes
1 answer
Define field in Alfresco Association
We've an alfresco application in production.
We want to add an information depending on two different Alfresco models.
Is it possible to define a custom property inside a RelationShip model?
We've already an attribute cmis:creationDate but it's not…

zikas
- 1
- 1
0
votes
2 answers
How can I get both Folders and Documents with one Cmis query
By using Apache Cmis query, if I understand correctly, you can get either
a List of Cmis Folders (SELECT * FROM cmis:folder WHERE...)
a List of Cmis Documents (SELECT * FROM cmis:document WHERE...)
But what I need, is a List of cmisObjects. I need…

yannicuLar
- 3,083
- 3
- 32
- 50
0
votes
1 answer
How to add aspects/extentions to Alfresco Folder and Documents using DotCMIS?
I had a working code using Java using this method for creating document and folders in alfresco using CMIS.
Folder.createFolder(
Map properties,
List policies, List addAce, List removeAce,
…

Jin Ginusuke
- 67
- 1
- 1
- 11
0
votes
1 answer
What is Alfresco's CMIS 1.1 WSDL binding URL?
CMIS is a protocol with several optional bindings: Atom, WSDL, Browser.
According to Alfresco's documentation:
Currently Alfresco supports the atom binding for the CMIS 1.0 protocol,
and both the atom and browser bindings for the CMIS 1.1…

Nicolas Raoul
- 58,567
- 58
- 222
- 373
0
votes
2 answers
Running OpenCMIS client with CXF
I'm trying to add an OpenCmis client to web application which already has other clients using CXF. It will be deployed on Weblogic. I have the OpenCMIS client working based on http://chemistry.apache.org/java/opencmis-client-bindings.html
The…

NeplatnyUdaj
- 6,052
- 6
- 43
- 76
0
votes
1 answer
cmis versions 1.0 or 1.1 documentum and alfresco jar files and stuff
I have a question about the versions and version numbering convention around Apache Chemistry OpenCMIS and wondered if it could be clarified for me.
I was surprised
System.out.println(session.getRepositoryInfo().getCmisVersion() );
Told me EMC…

KevinY
- 1,229
- 1
- 12
- 27