Questions tagged [apache-chemistry]

Apache Chemistry is an open source implementation of the CMIS content management interchange standard

Apache Chemistry provides open source implementations of the Content Management Interoperability Services (CMIS) specification.

This tag should be used for questions around using the CMIS client libraries (in Java, .NET, Python or PHP), or for questions around using and embedding the Java server library in your application.

For more general CMIS related queries, the CMIS tag should normally be used.

105 questions
4
votes
1 answer

How much does CMIS specification cover JCR specification?

I'm planning to use openCMIS (apache chemistry project) with my JCR repository via JCR bridge. But there is a lack of documentation for this. Apart from CRUD of files from/to JCR repository which I just did, what about Node properties ? JCR mixins,…
lisak
  • 21,611
  • 40
  • 152
  • 243
4
votes
1 answer

Get Alfresco extension properties with OpenCMIS

I'm writing an OpenCMIS based application, which extracts some data from Alfresco 3.3. It works fine with standard CMIS properties such as cmis:name or cmis:contentStreamMimeType; however, I can't access Alfresco especific properties, which are…
AJPerez
  • 3,435
  • 10
  • 61
  • 91
4
votes
1 answer

Sling vs CMIS as a REST interface for Apache jackrabbit

If I get it, Apache Sling acts a REST CRUD interface for a Jackrabbit JCR repository. As there already exists a RESTful protocol (CMIS in its AtomPub implementation) to work with JCR repositories, apart from the view/templating layer, is there any…
gpilotino
  • 13,055
  • 9
  • 48
  • 61
3
votes
1 answer

java.lang.NoSuchMethodError: com.sun.xml.internal.ws.api.message.Message.getHeaders

I'm trying to connect to a CMIS server with Apache Chemistry, when it is configured with an AtomPumb url it works ok, but when I swith to webservices and when it tries to create a session it throws this error: java.lang.NoSuchMethodError:…
Alfredo M
  • 568
  • 3
  • 7
  • 26
3
votes
1 answer

What is OpenCMIS Bridge?

I just noticed this project at Apache OpenCMIS: https://svn.apache.org/repos/asf/chemistry/opencmis/trunk/chemistry-opencmis-bridge There is no description, no documentation, and reading the code does not give many hints about what it is supposed to…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
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
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

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
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"); …
2
votes
1 answer

Activiti kickstart deploy on alfresco 5 with CMIS

I have installed Alfresco 5.0d and want to use the Activiti Designer 5.18 with Eclipse Kepler. When I try to deploy an Activiti process using the CMIS-API, I get the following…
Ben
  • 1,579
  • 4
  • 20
  • 34
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
1 answer

Apache Chemistry CMIS session.createDocument vs folder.createDocument

I would like someone to give me the difference between the session createDocument and folder createDocument methods. Also within this context is there a sample on how I could use document appendContentStream() method, I was struggling to see an…
tosi
  • 1,873
  • 2
  • 18
  • 38
2
votes
2 answers

CMIS session.queryObjects doesn't return aspects

I have a couple test functions I've written to illustrate a problem (or at least some behavior that I don't understand). I am just doing some basic CMIS queries on an Alfresco 4.2.e community repository, but am getting some unexpected results…
BrianV
  • 105
  • 7
2
votes
2 answers

CMIS default url for a document?

The cloud storage services like Google and Box have a shareable url endpoint for all files. Something like http://drive.google.com/my-object-id. Is there a default cmis value across most server implementations to get this kind of url? If not…
Randall
  • 512
  • 1
  • 5
  • 15
1
2 3 4 5 6 7