[jboss-user] [JBoss jBPM] - Re: pooled actors not persisted

2008-10-30 Thread dmitri.ilyin
i could localize the problem but i have no idea how to solve it. We run JBoss 4.2.3 with JBPM3.2.3. We use EJB3 (JPA) for Entity Beans and JTA Transactions. So, we have only one Hibernate configuration for hole Enterprise App. Hibernate session-factory is configured for JNDI and we use only

[jboss-user] [JBoss jBPM] - Re: pooled actors not persisted

2008-10-30 Thread dmitri.ilyin
uups. the jbpm config was removed from post. Here ist : | jbpm-context | service name=persistence | factory | bean class=org.jbpm.persistence.jta.JtaDbPersistenceServiceFactory | field name=sessionFactoryJndiName | string value=EjfinSessionFactory /

[jboss-user] [JBoss jBPM] - Re: pooled actors not persisted

2008-10-29 Thread kukeltje
please provide a unittest with embedded processdefinition and actionhandlers (assignmenthandlers) that demonstrate the problem. It's hard guessing what you exactely do and takes to much time to try and reproduce View the original post :

[jboss-user] [JBoss jBPM] - Re: pooled actors not persisted

2008-10-29 Thread kukeltje
please provide a unittest with embedded processdefinition and actionhandlers (assignmenthandlers) that demonstrate the problem. It's hard guessing what you exactely do and takes to much time to try and reproduce View the original post :

[jboss-user] [JBoss jBPM] - Re: pooled actors not persisted

2008-10-29 Thread kukeltje
please provide a unittest with embedded processdefinition and actionhandlers (assignmenthandlers) that demonstrate the problem. It's hard guessing what you exactely do and takes to much time to try and reproduce View the original post :

[jboss-user] [JBoss jBPM] - Re: pooled actors

2007-11-03 Thread kukeltje
actor-id != pooled actor. actor-id is an individual actor (ie a 'user' in the jbpm identity table) and what this is is up to you. pooled actors contains a list of individual actors and/or groups (in the jbpm identity table) So setting up 'pooled' actors is greating a group and making users

[jboss-user] [JBoss jBPM] - Re: pooled actors

2007-11-02 Thread armita
I also find out that you can set somethng like actor-id=actorId in the assignment when defining it as a pooled actor. But Jbpm gives an error informing that it could not find the pooled actor. My question is how can I set up the pooled actors so that Jbpm could find them. View the original

[jboss-user] [JBoss jBPM] - Re: pooled actors

2007-11-02 Thread kukeltje
you can also put a groupname in the pooled actors attribute View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4101269#4101269 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4101269 ___

[jboss-user] [JBoss jBPM] - Re: pooled actors

2007-11-02 Thread peterah
you may assign pooled actors with an AssignmentHandler for example with processdefinition.xml like this: task name=test | assignment class=RoleAssignmentHandler | /assignment |/task | then create class RoleAssignmentHandler : public