[JBoss jBPM] - Re: Where is my process waiting for execution?
by dleerob
All my users have a list of all task instances that they have completed. So if they did complete a task at some stage, they can click on "completed" tasks, view their list, and then select the task they want to view the process for.
If a user never actually performs a task for a process instance, you could always list all process instances, and let him select which one he wants to view.
I also have an "initiated processes" view, where a user can view a list of all process instances that he was the initiator of.
I have an admin user that can also view a list of all process instances, and all tasks, so he can take a look at anything he wants.
There are many ways to determine the process instance you want to view, it all depends on how your application is used, and how you want it to be used.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097861#4097861
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097861
18Â years, 8Â months
[JBossWS] - Problem to install jbossws-native-2.0.1.GA, build.xml !?
by iner
Hello,
I am running JBoss 4.2.1 on my windows machine.
Using JDK jdk1.5.0_12,
| C:\app\jbossws-native-2.0.1.GA>echo %java_home%
| C:\jdk1.5.0_12
|
| C:\app\jbossws-native-2.0.1.GA>java -version
| java version "1.5.0_12"
| Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
| Java HotSpot(TM) Client VM (build 1.5.0_12-b04, mixed mode, sharing)
|
| C:\app\jbossws-native-2.0.1.GA>echo %jboss_home%
| C:\APP\jboss-4.2.1.GA
|
| Changed the ant.properites to reflect my environment.
| # Optional JBoss Home
| | jboss42.home=C:\APP\jboss-4.2.1.GA.
|
| running the following:
| C:\app\jbossws-native-2.0.1.GA>ant deploy-jboss42
| Buildfile: build.xml
|
| prepare:
|
| undeploy-jboss42-endorsed:
|
| undeploy-jboss42:
|
| BUILD FAILED
| C:\app\jbossws-native-2.0.1.GA\build\build-deploy.xml:58: The following error occurred while executing this line:
| C:\app\jbossws-native-2.0.1.GA\build\macros-deploy-native.xml:178: Not available: C:APPjboss-4.2.1.GA/client/jboss-client.jar
|
| Total time: 1 second
| C:\app\jbossws-native-2.0.1.GA>
|
Total time: 0 seconds
So, where am I going wrong, seems like the build.xml does something to my %jboss_home% which it should not do.
regards, i
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097857#4097857
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097857
18Â years, 8Â months
[JBoss jBPM] - Re: Timer Task never fired
by Olivier.ch
Yes there is a task. I have tried to set the timer on my task :
| <task-node name="Prise En Charge">
| <task name="Prendre en charge">
| <timer name="timer-AlerteDeclenchee" duedate="2 seconds" repeat="true" >
| <action name="Renotification" class="ocd.common.workflow.process.action.NotificationTimerHandler"></action>
| </timer>
| <assignment class="ocd.common.workflow.process.action.AssignerUtilisateur"></assignment>
| <controller>
| <variable name="acteurID" access="read,write,required"></variable>
| <variable name="txtMessage" access="read,write,required"></variable>
| <variable name="listeDeDiffusion" access="read,write,required"></variable>
| </controller>
| </task>
| <event type="node-enter">
| <action name="Notification (Alerte declenchee)" class="ocd.common.workflow.process.action.NotificationTimerHandler" config-type="bean">
| </action>
| </event>
| <event type="node-leave">
| <action name="Notification (Alerte prise en charge)" class="ocd.common.workflow.process.action.NotificationHandler"></action>
| </event>
| <transition name="Alerte prise en charge" to="Decision Crise">
| </transition>
| </task-node>
|
Then I have the create timer on my logs :
| 13:43:03,505 DEBUG GraphElement:247 - executing action 'CreateTimerAction(1a82e92)'
| 13:43:03,505 DEBUG Token:648 - token[5654] is locked by token[5654]
| 13:43:03,505 DEBUG GraphElement:170 - event 'timer-create' on 'Task(Prendre en charge)' for 'Token(/)'
|
but I do not have a delete timer (Perhaps because on my Junit Test, I do not have a task.end() I just use the context.signal () to jump on the other node )
In conclusion, I steel do not have any fired timer ...
My action timer is never use and I do not have any log of this event ...
Is there something else to set configuration on because I do not use JBoss. For the moment only Junit and Spring, and after Tomcat will be my Web Application Server... ?
Thanks for your help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097851#4097851
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4097851
18Â years, 8Â months