[jboss-user] [JBoss jBPM] - deploying actions --org.jbpm.graph.def.DelegationException

2006-09-11 Thread jmjava
i can deploy Actions with my process defintion but when i include the files in my .war i get an org.jbpm.graph.def.DelegationException - it can't find my class. Where do you put your classes? and for that matter the .jars they depend on? -jm View the original post : http://www.jboss.com/in

[jboss-user] [JBoss jBPM] - Re: Node events not getting fired?

2006-09-11 Thread jmjava
i do have a class i just was not pointing to it :) | | | | | | | | | | | System.out.println("Event was fired to node-leave on create new web sale order"); | | |

[jboss-user] [JBoss jBPM] - Node events not getting fired?

2006-09-11 Thread jmjava
I have altered the demo app to trigger an action on leave-node | | | | | | | | | jbpmproto.EmailNotificationAction | | | | but the Action is never getting called when i leave via the tr

[jboss-user] [JBoss jBPM] - Swimland reassignment Example

2006-09-08 Thread jmjava
I recently figured out how to reassign swimlanes for a processInstance and thought an example might help others Note: the assignments are currently hardcoded but a more production capable version of this Action could be designed that retrieves a processInstance varaible, possibly a hashMap and

[jboss-user] [JBoss jBPM] - Re: passing data to AssignmentHandler best practice?

2006-08-31 Thread jmjava
FWIW I got it: Instead of hardcoding the assignment like in the base websale example i changed the process Defintion to be: | | | | | | | | | | and after i create my processInstance i set the taskInstance variables in java code:

[jboss-user] [JBoss jBPM] - Re: passing data to AssignmentHandler best practice?

2006-08-31 Thread jmjava
thanks ron i am having trouble with the syntax: taskInstance.setVariable("buyer", "cookiemonster"); taskInstance.setVariable("salesman", "ernie"); taskInstance.setVariable("accountant", "bert"); taskInstance.setVariable("shipper", "grover"); i want to be able to access these v

[jboss-user] [JBoss jBPM] - passing data to AssignmentHandler best practice?

2006-08-31 Thread jmjava
I would like to have the ability to assign tasks to users based on GUI input. I see where you can use an assignment expression to do this but I'm not clearn on how to pass data to the scripting environment. For instance if i want don't want to hardcode this assignment How shoul

[jboss-user] [JBoss jBPM] - Swimlane assignment through API?

2006-08-30 Thread jmjava
In the websale examples' process defintion swimlanes are set via assignment expressions: | | | | | | | | | | | | I am looking the Swimlane source and there are methods to set the ActorIdExpression and the PooledActorsExpressio

[jboss-user] [JBoss jBPM] - Problem creating Process Instance and Tasks

2006-08-29 Thread jmjava
I am trying to creat a simple web application that demonstrates moving a token through a process and assigning users to tasks during the process. I am using the Spring Modules package to configure my JBPM engine. When i try to create a processInstance and signal the token it appears that my

[jboss-user] [JBoss jBPM] - Re: Passing information from UI into taskInstance

2006-08-25 Thread jmjava
"stibrian" wrote : | | The key will be to look at how the current web app is doing things. | | ... | At no point though (that i'm aware of) do ActionHandlers come into play | thanks stibrian! that clears alot up. View the original post : http://www.jboss.com/index.html?mod

[jboss-user] [JBoss jBPM] - Re: Passing information from UI into taskInstance

2006-08-25 Thread jmjava
lol... through the API yes i figured that. a more appropriate question would be: can i pass UI information to an ActionHandler? for instance if i want to store a variable pulled from the UI in a TaskInstance is an ActionHandler an inappropriate choice (event based execution)? OR -- should i j

[jboss-user] [JBoss jBPM] - Passing information from UI into taskInstance

2006-08-25 Thread jmjava
How is this done? Can i create my own web GUI to do this? -jm View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3967524#3967524 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3967524 __

[jboss-user] [JBoss Portal] - Struts example portlet for 2.4?

2006-08-20 Thread jmjava
Is there a Struts example portlet for 2.4? Is there a Struts portlet How To document somewhere? -jm View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966347#3966347 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966347

[jboss-user] [JBoss jBPM] - Re: Programmatically creating workflows

2006-08-10 Thread jmjava
"kbarfield" wrote : | | jBPM can do what you are talking about. It is very flexible, and you can programatically create processes, update processes, etc. All we were suggesting were some best practices based upon what we have seen. If you feel that you will need to change processes dyna

[jboss-user] [JBoss jBPM] - Re: Programmatically creating workflows

2006-08-10 Thread jmjava
"kbarfield" wrote : | | | 2. Are the actual customizations you need changing the fundalemental flow of the process? For instance, are you going from a process that was A>B>C to H>Q>U>V? Or is it the case that the process variables and who gets assigned tasks what is changing? The la

[jboss-user] [JBoss jBPM] - Re: Programmatically creating workflows

2006-08-08 Thread jmjava
"kukeltje" wrote : I've advised people internally at the company I work for to NOT do this... I mean do not have managers or customers change processes themselves. I know, the business want to skip the tech people, but instead of having them do it themselves (yuck) create a new role, 'process d

[jboss-user] [JBoss jBPM] - Programmatically creating workflows

2006-08-08 Thread jmjava
Is there an API where you can create workflows - or better yet - customize existing workflows via Java? For instance we want to create a program that defines base workflow templates but allows managers to customize the workflow for a particular individual - is this possible in JBPM? View the o