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 ...
0
votes
0answers
20 views
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
...
0
votes
1answer
17 views
Created documents are not versionable
I use OpenCmis in-memory for testing. But when I create a document I am not allowed to set the versioningState to something else then versioningState.NONE.
The doc created is not versionable some ...
1
vote
1answer
61 views
Update alfresco content type through chemistry OpenCMIS
I am trying to update the content type of files in alfresco through OpenCMIS.
The CMIS workbench shows the type in the types windows, with as only disabled switch 'Policy controlable'. Its local name ...
0
votes
0answers
23 views
Login error to Sharepoint 2010 repository using openCMIS Workbench
I get the following error when I try to login to a Sharepoint 2010 respository using openCMIS workbench.
runtime:
Unable to cast object of type 'System.Boolean' to type 'System.String'
0
votes
1answer
64 views
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, ...
0
votes
1answer
71 views
Get thumbnail of PDF file in CMIS
I'm using Apache Chemistry OpenCMIS to access my Alfresco repository and get files.
I'm able to get thumbnails via the renditions of a file (cmis:thumbnail) but it only seem to work for images. Is it ...
1
vote
1answer
62 views
Upload File with OpenCMIS has no content
I'm trying to upload a file into my Alfresco repository using Apache Chemistry OpenCMIS.
The file is created and the properties are correct but there is no content, the file is 0 bytes. I've double ...
1
vote
1answer
160 views
Read Alfresco custom metadata via OpenCMIS?
I created a new Alfresco document, and added a custom aspect (EXIF aspect) to it.
How to get the values of this metadata via OpenCMIS/DotCMIS?
I tried the following but it does not show the EXIF ...
0
votes
1answer
64 views
Delete Specific version of Document in Alfresco
Can we delete a specific version of Document in Alfresco?? As while I am trying to delete document by my code it will delete a document with version history. I want to delete specific version of ...
1
vote
1answer
66 views
CmisInvalidArgumentException when downloading Private Working Copy from Alfresco via CMIS
My open-source app downloads the files of an Alfresco folder (by CMIS).
Algorithm is very simple:
List content of folder with Folder.getChildren()
Download each with Document.getContentStream()
It ...
0
votes
0answers
127 views
Searching Content of any king of Document From Alfresco using OpenCMIS
Is this necessary to do index on document of Alfresco while searching the content in any type of document? As I am searching the content using OpenCMIS query with IN_FOLDER('ID') as well as ...
0
votes
2answers
59 views
How to find if a Document is versionable?
How can I find if a Document is versionable in alfresco using OpenCMIS code?
1
vote
2answers
148 views
Change the version manually of a Document in Alfresco using OpenCmis
I want to know how can we change the Document Version Manually in Alfresco using OpenCmis? As of now when i update the document, every time alfresco change the version itself but I want to change ...
-2
votes
1answer
337 views
Create and update documents while maintaining version history using OpenCMIS [closed]
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 ...
0
votes
1answer
161 views
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 ...