Be or not to be: Versionmare on MySQL?

What the fuck! Im sorry but this gettin one big hole, i hope…
If you have currently MySQL as Database running and the driver version 5.0.x on start, i expect you getting some errors when you using BinaryObjects for exchange between different layers. When you using this driver-version 3, you should getting errors if you run […]

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