[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-28 Thread dlipski
Thanks I forgot about task events, and was trying to do that in some other way. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961492#3961492 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961492 __

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-27 Thread kukeltje
read the docs lots of 'events' including a TASK-CREATE etc.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961379#3961379 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961379 __

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-27 Thread dlipski
anonymous wrote : use an actionhandler that can work with a xml structure But all i found is that action handlers can be used to parametrize actions, not other types such as task's.I know i can do something like this: | | Atlanta | 5 | | But is it possible to assign ActionHand

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-26 Thread kukeltje
Oh yes, this is possible. just use an actionhandler that can work with a xml structure. There are some examples in the source, docs, this forum... just don't look at the xml tag as the variable name but do something like | one1 | two2 | three3 | Where the value of key is the varia

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-26 Thread dlipski
Thanks for your reply. But as i understand documentation (11.5 "Task controllers") they are intended to translate and extract information from the process variables, not to define new variables. Tag (nested in controller) have attributes name, acces & mapped-name. I'm looking for some 'value'

[jboss-user] [JBoss jBPM] - Re: Task parameters

2006-07-25 Thread newbie007
I guess that is possible using the variables. When you configure your task (by adding actions, swimlane etc in JPD), you can specify the variables using the "Controller" menu. These variables can be retrived using the API: taskInstance.getTask().getTaskController().getVariableAccesses() Thanks.