10-26-2006 06:32 AM
12-20-2006 11:02 AM
12-20-2006 11:04 AM
17:45:40,240 ERROR [org.alfresco.web.ui.common.Utils] Failed to get group tasks: java.lang.ClassCastException: org.jbpm.taskmgmt.exe.PooledActor
java.lang.ClassCastException: org.jbpm.taskmgmt.exe.PooledActor
at org.alfresco.repo.workflow.jbpm.JBPMEngine.getTaskProperties(JBPMEngine.java:1247)
at org.alfresco.repo.workflow.jbpm.JBPMEngine.createWorkflowTask(JBPMEngine.java:1818)
01-07-2007 07:15 AM
01-19-2007 07:55 AM
for (String pooledActor : (Set<String>)pooledActors)
but pooledActors is a set of org.jbpm.taskmgmt.exe.PooledActor hence the ClassCastException. I modified the code to for (PooledActor pooledActor : (Set<PooledActor>)pooledActors)
and later used getActorId() to retrive the string value of the pooledActor when required.01-19-2007 08:53 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.