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";>
|
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()
| {
|
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
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
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
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
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
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
__
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