Stay Tuned on Oracle-Magazine (DOAG)

Well met.
Next days  a new Article gets released which i´ve wrote some months ago. The article handles about ECM, particulary catches-up the Performance-Corner, focussing Alfresco in association with the State-Of-The-Art Database Oracle.
The main question where the most time will be spended in the article belongs to the issue on how sophisticated databasas can help us […]

Just married: Alfresco & VTiger

Very well. On my work some people are in fraud with its business-contacts that must be managed twice: VTiger (a CRM-TOOL) as well as in Alfresco. We´ve had looking for a cool solution that brings together all those peaces to get rid of the management-overhead. And we found… nothing… realy strange i guess as i […]

Alfresco 3.2 Share: Pimp The Document-Library for Custom Document Types

What we´ve seen from my last post about the tales through the features of the newest Alfresco Version was just the first trick. The second trick belongs to the documentLibrary of share: How can we pimp the document-library for our custom Document-Types? Well, if we want to provide additional menu-items - to obtain just […]

Alfresco 3.2 Share: FormService Seems To Be cool. But Whats About Associations?

Alfresco 3.2 bears new cool features to the community, especially an easy way to display custom metadata in Share. Actually it was´nt possible, displaying custom metadata-properties in Share without doing customizations on the underlying Share/SURF-Code.
Well these times are over … almost over!
If you using an association between two nodes, you get not the same feeling […]

Struggles On Alfrescos LDAP-Synchronisation With Multiple Domain-Controllers

What a hell last two days. What guy doesnt know the case, where its all right set but nothing gets to run on these things? A common developer issue and long-term pain
My current case descripes LDAP-Synchronisation against more than one Active-Directory, respectivally Domain Controller.
An international customer wants to sync users and groups being […]

AlfrescoRuntimeException: Registry root not present

Oh what a day,
after migrating customers alfresco version 1.4 up to 2.2.1 all seems okay(migration has already been made by Lothar,  thanks to that alfresco-geek :)) during merging all customized features at this single point of time. After all, i´ve done a new test-approach assuring that migration works fine from 1.4 to 2.2.1.
But now, for […]

Count Number of Document Downloads in Alfresco

Oh yes, i still hear some voices behind fences crying for stupid solution or even bad requirement that can not be handled exactly using Alfresco. And yes, i say its possible to count the number of times a document was downloaded without changing alfresco code itself:
Therefore, we using a ProxyFactoryBean advices the “small” contentService to […]

Manage Alfresco´s JBPM Implementation Context

As a current task in the current project, its a requirement providing access to all comments of a workflow. For sure, you can doing this by retriving all completet tasks orderd by creation time. This can be performed using WorklfowQueries like this:

WorkflowTaskQuery query = new WorkflowTaskQuery();
query.setActive(null);

query.setProcessId(wi.id);

query.setTaskState(WorkflowTaskState.COMPLETED);

query.setOrderBy(new WorkflowTaskQuery.OrderBy[] {

WorkflowTaskQuery.OrderBy.TaskCreated_Desc,

WorkflowTaskQuery.OrderBy.TaskActor_Asc });
List<WorkflowTask> […]