Questions tagged [cmis]

Content Management Interoperability Services for talking to Content Repositories

Content Management Interoperability Services, abbreviated as CMIS, is an OASIS standard for communicating with Content Repositories using one of its RESTful, SOAP or JSON bindings. An introduction is available from the Apache Chemistry project (tag apache-chemistry)

This tag should be used for questions around using CMIS, building clients and servers on top of it, and understanding how things map onto CMIS concepts.

518 questions
2
votes
1 answer

CMIS unit tests?

These days, many companies and open source groups implement CMIS servers, striving to comply with the specification. I am also developing a CMIS server. QUESTION: Where can I find readily usable unit tests for my CMIS server? For now the best unit…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
2
votes
1 answer

Alfresco CMIS query with dynamic date

I want to query Alfresco through the CMIS query interface. I can not find any documentation on how to query with a condition on a dynamic date, e.g. today. I want to retrieve changes within the last 24 hours. So what I am looking for is an…
morja
  • 8,297
  • 2
  • 39
  • 59
2
votes
2 answers

CMIS vs REST. Which client would be easier to implement from scratch?

Im working on a Java project that needs to upload files using either REST or CMIS (both services are available). I'm completely new to these APIs and would like to ask which one would be easiest and more straightforward to implement. I can't use…
Ladich
  • 23
  • 4
2
votes
0 answers

Search document by node in Alfresco

We need to create a query to find documents by node. We have documents with the following properties:
Yone
  • 2,064
  • 5
  • 25
  • 56
2
votes
1 answer

Advanced library and API design

I am developing a library that uses CMIS compatible storage as back-end (in my case Alfresco). I would very much like to create a "sexy" API similar to that of Flask-SQLAlchemy and Django. The problem is that I am new to such advanced programming in…
codehugger
  • 629
  • 5
  • 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
0 answers

CMIS Alfresco - updating a document mime type and file extension name programmatically

I have a few documents that were originally uploaded as .doc files with the mimetype of Microsoft Word (application/msword) to alfresco share. Now I've been able to successfully change the documents extension and update its mime type property to…
Emir Memic
  • 270
  • 1
  • 3
  • 14
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…
2
votes
1 answer

cmis or web scripts use?

I want to build a JavaEE GED application using alfresco and activiti Workflow engine which manages and monitors the mail of an organization (Letter, Fax, mail etc.). Since I am new with alfresco I want to know the best way to communicate with…
Wassim Makni
  • 471
  • 2
  • 9
  • 21
2
votes
2 answers

How to Increase Document delete time-out period in alfresco 5.0.d

I am trying to delete some documents from alfresco repository. But its giving time-out Exception. So is there any configuration to increase that time-out period. Or is there any other way to delete documents, in that i will not get read time-out …
Deepak Talape
  • 997
  • 1
  • 9
  • 35
2
votes
1 answer

getRenditions() on org.apache.chemistry.opencmis.client.api.CmisObject returns null

I am using Apache Chemistry 0.14.0 to access documents in Alfresco 5.1. I am using AtomPub binding to access Alfresco. When I invoke getRenditions() method on CmisDocument null is returned for all documents. Any ideas what could be the cause?
zoran
  • 826
  • 1
  • 10
  • 14
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
2
votes
2 answers

How to get rendition copy of word document from alfresco repository using CMIS

I created one custom web application. through that i am uploading some document to alfresco repository. i also created one PDF viewer to view document in UI. Now the problem is, i am only able to view PDF type of document, but i am uploading…
Deepak Talape
  • 997
  • 1
  • 9
  • 35
2
votes
2 answers

CMIS:document query error

I need all documents under specific folder path My Query is : query = "SELECT cmis:name FROM cmis:document WHERE CONTAINS('PATH:\"/app:Company Home/st:Sites/*\"')" The following exception…
user3370281
  • 121
  • 1
  • 9
2
votes
1 answer

How to set charset in Apache Chemistry CMIS API?

I'm trying to get a folder ID by path like: Folder folder = (Folder) getCmisSession().getObjectByPath(folderPath); and the path that I'm requesting is: /SIGAP/2011/DIRECCIÓN GENERAL DE PRUEBAS/SIN EXPEDIENTE/2010001231 and as you can see there's…
Alfredo M
  • 568
  • 3
  • 7
  • 26
1 2
3
34 35