alfresco

Intergating Liferay and Alfresco

Hello, Im using Liferay version 5.2.3 and Alfresco Community Edition.I want to integrate Alfresco with Liferay . I want to show Alfresco as a portlet within Liferay. Can someone please tell me how to go about doing this ? Thank You ...

Portlet temporaily unavailable message for Alfresco portlet in Liferay

Hello, I followed the steps on http://www.liferay.com/web/jonas.yuan/blog/-/blogs/integrating-alfresco-web-client-as-a-set-of-portlets-with-liferay to integrate alfresco as a portlet in Liferay 5.2.3. I am able to add the Alfresco portlet to my Liferay page, but it shows the message "Portlet is temporarily unavailable" Any way to fix th...

How to get list of aspects in the systems

Does one can recommend me how to get list of aspects in alfresco using java web-service API. Thank you. ...

How to get Group node in Alfresco 3.1's Java-Backed Webscript

With Javascript Webscript, I can get a group node with the following code: var group = People.getGroup(groupname); What would be the Java-backed equivalent of this code? So far I can only get a set of all group names, but I would like to be able to iterate through the set and get the actual group node. //Gets all groups, but only as...

Integrating Alfresco Flexspaces with JBOSS portal

We're working on a development of a JBoss portal. As part of the functionality, we need to integrate it with Alfresco, using a portlet. Both (portal and Alfresco) will connect to the same LDAP directory to get the users, to guarantee that the same users can access to both systems. Right now that part of the implementation is not complete...

Creating Secure Extranets Using Drupal Organic Groups, LifeRay Social or Alfresco Share

We are using Drupal to build a portal site and want to offer secure extranets to users so that users from different companies can collaborate on projects. We would like to offer the following functionality for the extranets: Ability to make extranets public or private and to invite new members easily. Typical extranet features such as...

Help to choose Alfresco or Nuxeo for DMS

Hi! I have requirement to develop DMS(Document Managemen System) with some initial requirements: If possible DMS should be open source Initially DMS should support up to 500 users System should be scalable in sence od users or content Docuemtns/Content should be stored on a file system Document should be able to be marked for later ...

Alfresco Community on Tomcat starts very slow

Hi, We're currently testing out Alfresco Community on an old server (only 1GB of RAM). Because this is the Community version we need to restart it every time we change the configuration (we're trying to add some features like generating previews of DWG files etc). However, restarting takes a very long time (about 4 minutes I think). Thi...

Customizing Alfresco version labeling policy?

Alfresco Wiki Versioning section "Version meta-data, version numbers and version labels": The generation of the version label can be customized by creating a version label policy behaviour and registering it in place of the default version label policy. Where is this documented? ...

maven conditional dependencies

We would like to bundle library dependencies from (Alfresco or Jackrabbit or ...) based on the customer choice. The number of dependencies actually varies based on the chosen vendor. How do we provide hooks at the maven level, so that the final product just includes the dependent jars as per customer selection. ...

HttpUrlConnection Post causes the browser to download the response JSON in Java Proxy

Hi all I'm making call to Alfresco Webscripts which return JSON. I do this using GET requests which all work perfectly. If I do a file POST however, the Alfresco server receives the file correctly and sends back a JSON response, but this time the response causes the browser to prompt for a download instead of the letting Javascript proc...

Progressing Alfresco workflows through web script

I have an Alfresco document reference; what I'm looking for is a way to access workflow attached to that document and finish it (or progress it to the next transition) through Javascript. Almost every example on the web shows how to start workflow, and from the dashlet I could call task command processor (/alfresco/command/task/end/[/tr...

Filtering out specific objects from a search query in Alfresco using Java

I have a HashSet containing all groups I've retrieved from my database. I've been asked to filter this result by removing two specific groups. It seems trivial but I can't seem to come up with a solid solution for storing the specific groups I want to filter out. My idea is to just create an array containing references to the two grou...

What are the reasons to store documents into DBMS when using Alfresco CMS

Hello guys! I have interview for an internship with company that wants to implement document management system and they are considering on the first place open source solutions, their top choice being Alfresco, but decision is still not final, part of my work there would be to investigate is Alfresco the best solution. What I have seen...

[Alfresco] property qualified-name in method getContentReader

Hi there, I first apologize for my poor english level and maybe for the stupidity of my question ;) I am on an alfresco project to learn how it works. I have to browse programatically my content repository and gather datas all along. In order to do that I guessed I had to use a ContentReader (I get from my ContentService) but the metho...

Side effect with the Alfresco content repository API ?

I'm studying Alfresco and particularly it's content repository Java API. I am trying to train with an example from the SDK "First Foundation Client". I took the code, I manage to handle it a bit but when I restart my alfresco server I get ugly stacktrace like ERROR [web.context.ContextLoader] Context initialization failed org.alfresco...

Alfresco SDK example fails

Hello everyone ! My problem is that when I launch the "First Foundation Client" from the SDK I get an error at runtime which looks like Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'indexerComponent' defined in class path resource [alfresco/core-services-context.xml]:...

Alfresco Document Management supportive of all file types?

Hi Guys, Quick question.... We're trying to make a decision on a dms here and Alfresco has been recommended to us. Is the Alfresco Document Management supportive of all file types? Thanks! ...

Need help with workflow in Alfresco

Hello SO community, I haven't had any luck getting help in the Alfresco forums, and I'm hoping for more here. We are building an application based on Alfresco and jBPM and I have defined a workflow, but I have either defined it wrong or am missing something or there are bugs in Alfresco integration with jBPM and I need help figuring ou...

how Can we get the output format to CSV instead of HTML in Alfresco using webscripts?

how Can we change the output format to CSV instead of HTML in Alfresco using webscripts? below are the my corresponding FTL and Webscript files recursive.get.html.ftl <#macro recurse_macro node depth> <#if node.isContainer> <tr> <td> ${node.properties.name} </td> <td></td> </tr> <#list node.children as ...