[jboss-user] [JBoss Seam] - Re: jbpm timer transaction issues

2008-02-12 Thread torsty
hi, have you solved your problem? I did something similar with seam 2.0.1GA and jbpm 3.2.2. Everything worked all right. process-definition looked like: | http://www.w3.org/2001/XMLSchema-instance"; | xsi:schemaLocation="urn:jbpm.org:jpdl-3.2 http://jbpm.org/xsd/jpdl-3.2.xsd";> |

[jboss-user] [JBoss Seam] - Re: Unassign Task

2007-07-28 Thread torsty
Don't know if I got you, but you said you did want anonymous wrote : to return a task to the pooled tasksI am assigning a task back to a (named) pool like this. (this is reassigning a task to a pool - but not unassigning the task completly): | public void reassignToPool() | { |

[jboss-user] [Messaging, JMS & JBossMQ] - DLQ and caught exception in onMessage

2007-06-13 Thread torsty
Hi, I have the following problem: I have a MDB (EJB 3.0 on AS: 4.0.5.GA) that consumes messages from a queue. In the onMessage method I am calling the method of a Stateless Session Bean (injected with SEAM-mechanism). | public void onMessage( Message msg ) | { | | // extract userId

[jboss-user] [JBoss Seam] - Re: Seam managed entity manager and sessions beans

2007-06-04 Thread torsty
The componente name of the SMPC is "entityManager" To inject the Seam Entity Manager cou can either: |@In(value="entityManager" ) | private EntityManager em; | or you name your variable entityManager, i.e. anonymous wrote : |@In | private EntityManager entityM

[jboss-user] [JBoss Seam] - Re: Seam managed entity manager and sessions beans

2007-06-03 Thread torsty
Can you post the code of your sfsb? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050769#4050769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050769 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Usage of pooledTaskInstanceList

2007-05-31 Thread torsty
I am using the pooledTaskInstanceList without problems. But anonymous wrote : couldn't get pooled task instances list for actors '[]' looks like you haven't set the actor in your authenticate method, i. e. something like: | actor.getGroupActorIds().add( "myGroupActorId" ); | View the o

[jboss-user] [JBoss Seam] - Re: ManyToMany with EntityManager in flush mode manual

2007-05-29 Thread torsty
Hi fernando. thanks a lot! It Works! I missed to explicitly flush after persisting the job entity (really embarrassing - sorry). So thanks, again! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049371#4049371 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: ManyToMany with EntityManager in flush mode manual

2007-05-29 Thread torsty
forgot to say: when I used fluh mode manual I flushed before persisting. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049250#4049250 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049250 __

[jboss-user] [JBoss Seam] - ManyToMany with EntityManager in flush mode manual

2007-05-29 Thread torsty
Hi, I have got a question in regard to (bidirectional) ManyToMany relations. I have two classes (Job and Skill) that are linked by ManyToMany Association (Skill has the mappedBy attribute). I executed the following code: | // insert new Skill (wrapped in transaction) | Skill hibernate = ne