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> […]

« go back