fbm fatma
fbm fatma

Reputation: 450

Which is better web script or cmis in alfresco

I am curently developing a java/jee application using Alfresco as ECM. I want to know what is the best way to communicate with alfresco in a Java/jee app.Which is better using the web script or cmis ?

Upvotes: 1

Views: 329

Answers (2)

Younes Regaieg
Younes Regaieg

Reputation: 4156

I do not believe CMIS being the best way to communicate with an alfresco repository, at least not for the most recent Alfresco versions, unless interoperability is a key value here (as in you want to be able to switch easily between content repositories).

If you are starting a new project from scratch, then Alfresco public REST API would be my very first suggestion check the docs for more informations. Note that it is only available starting from version 5.2.

Some times, you will even need to implement your custom webscripts (RESTful endpoints) for your custom logic, depending on what you are trying to achieve like in insuring transactional atomicity or implementing some complex logic ...

Upvotes: 2

Yagami Light
Yagami Light

Reputation: 1796

For someone who is starting with Alfresco the better way to perform a connexion with Alfresco Respository is to use Apache Chimistery you can read more in this post cmis or web scripts use? you will found valuable link.

the thing that you have to understand is that you have to hundle the connexion with Alfresco, i mean by that if Alfresco is down or not you will found informations in this valuable post See if Alfresco Server is available

Hope that helped you.

Upvotes: 1

Related Questions