[jboss-user] [JBoss jBPM] - Object as a process Variable

2009-07-23 Thread csplrj
How can I use object as a process Variable? What I require is the same object to be set in the process as a Process Variable and then the same object will be used in the decision node and the transition condition expression #{contextInstance.variables.customObject.amount =

[jboss-user] [JBoss jBPM] - Re: JBPM 3.2.2 Timer Example

2009-07-20 Thread csplrj
The XML is not being displayed properly and so the correct XML is task-node name=legalDept | task name=task3 | assignment class=com.process.jbpm.ActorAssignmentHandler/assignment | /task | event type=task-assign |

[jboss-user] [JBoss jBPM] - JBPM 3.2.2 Timer Example

2009-07-20 Thread csplrj
JBPM 3.2.2 Timer I am trying a timer on JBPM 3.2.2 but it seems its not working somehow. A Entry in JBPM_JOB table is passed but the time specified seems to be wrong or taken from somewhere which I don't understand from where it has been taken The below is the part of processDefinition which

[jboss-user] [JBoss jBPM] - Does anyone has example for ExpressionAssignmentHandler

2009-07-13 Thread csplrj
I wanted to see the example of identity management regarding how to configure our orgainzation's mapping and using ExpressionAssignmentHandler regarding this CSJakharia View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4243268#4243268 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Does JBPM Supports fully actor based taskList

2008-06-09 Thread csplrj
Yes your statement was proper but somehow i missed the meaning. That's my fault Thanks for the help kukeltje CSJakharia View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4156621#4156621 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Error while trying to connect to Oracle database from jB

2008-06-09 Thread csplrj
Try to recreate the schema of Oracle as per \jbpm-jpdl-3.2.2\db\jbpm.jpdl.oracle.sql See if this helps CSJakharia View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4156626#4156626 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Does JBPM Supports fully actor based taskList

2008-06-06 Thread csplrj
I tried ((TaskInstance)taskMgmtSession.findTaskInstances(b).get(0)).getToken().end(); instead of ((TaskInstance)taskMgmtSession.findTaskInstances(b).get(0)).getToken().signal(); but then the result comes as a1 0 b1 1 What I require is that the task should be proceeded and as the second task is

[jboss-user] [JBoss jBPM] - Re: Does JBPM Supports fully actor based taskList

2008-06-06 Thread csplrj
I solved the issue. Actually I was putting an end to Token instead of TaskInstance due to which whole ProcessInstance was closed Finally I am able to solve the issue Thanks for that CSJakharia View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4156255#4156255

[jboss-user] [JBoss jBPM] - Re: replication of task at runtime

2008-06-05 Thread csplrj
Does it involves different actors or same actors? I am just asking as I have a same problem. but i require that the task to be associated with different actors Thanks in advance CSJakharia View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4155853#4155853 Reply

[jboss-user] [JBoss jBPM] - Does JBPM Supports fully actor based taskList

2008-06-05 Thread csplrj
I think I can't understand whether JBPM supports actor based TaskList? I have 2 tasks. The First one is assigned to actor b and then the next task is assigned to actor a the process of assigning is through AssignmentHandler assignable.setActorId After that process is passed from the First

[jboss-user] [JBoss jBPM] - Re: Does JBPM Supports fully actor based taskList

2008-06-05 Thread csplrj
The files as per below Thanks in advance CSJakharia processdefinition.xml ?xml version=1.0 encoding=UTF-8? | | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=authoring | start-state name=start-state1 | task | /task | transition

[jboss-user] [JBoss jBPM] - Even though the task is not for that actor i get that task u

2008-06-04 Thread csplrj
Below is the code for the experiment I have assigned the process to pool of actors After that task there is another task which is assigned to a single actor on reaching that task Node I try to get the remaining tasks for c but when i try the following code System.out.println(c1 +

[jboss-user] [JBoss jBPM] - Re: Want to suspend\close the taskInstance for some actors o

2008-06-03 Thread csplrj
Thanks for your reply Can this be added as an enhancement or this is a custom requirement? To me it feels it is a generalised requirement Thanks again CSJakharia View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4155401#4155401 Reply to the post :

[jboss-user] [JBoss jBPM] - Want to suspend\close the taskInstance for some actors out o

2008-06-03 Thread csplrj
I am assigning a task to a pool of actors and later on I want to suspend\close the taskInstance for some actors out of those pool of actors? eg. I assign a task named Submit your notebooks and have assigned them to persons a,b,c,d and then I require that if except for a,b I want to close the

[jboss-user] [EJB 3.0] - @SerializedConcurrentAccess not preventing concurrent access

2007-02-28 Thread csplrj
Software JDK 1.5 JBoss 4.0.5GA Problem I have used code as @SerializedConcurrentAccess | public class Class1 implements SessionBean { This does not prevents Concurrent Access to the Statefull Session bean. I could not get the reason. I am coding as a simple Bean. is it that I have to type

[jboss-user] [EJB/JBoss] - Catch javax.ejb.EJBException: Could not activate; failed to

2007-02-27 Thread csplrj
Software JDK 1.5 JBoss 4.0.5GA Problem I know the beow mentioned error is as my bean is getting passivated and then when I try to use the Remote Interface that bean this error is thrown I require a method by which I can catch this error and create a new bean whenever required. Does anyone