[JBoss jBPM] - Can we assign mulptiple swimalnes to a task??
by sumit.jbpm
Can we assign mulptiple swimalnes to a task??
What I want to ask is that; is there any possibilty through the "jPDL tags" to assign more than one groups or users (where each of the user is belongs to a different group, say there are 2 users one belonging to "Finance" group and the other belonging to "Marketting") to a task???
Will the jpdl look like the following in that case??
<?xml version="1.0" encoding="UTF-8"?>
|
| <process-definition
| xmlns="urn:jbpm.org:jpdl-3.2" name="GrantingProcess">
| <swimlane name="Sales">
| </swimlane>
| <swimlane name="CM">
| </swimlane>
| <swimlane name="CD">
| </swimlane>
| <start-state name="start">
| <transition name="" to="CreateReservation"></transition>
| </start-state>
| <end-state name="end1"></end-state>
| <task-node name="CreateReservation">
| <task name="CreateReservation" swimlane="Sales, CM"></task>
| <transition name="" to="Grant Approval"></transition>
| </task-node>
| <task-node name="Grant Approval">
| <task name="GrantApproval" swimlane="CM, CD">
| </task>
| <transition name="" to="ApprovalDecision"></transition>
|
| </task-node>
| <decision name="ApprovalDecision" >
| <handler class = "com.framework.workflow.handlers.ApprovalHandler"/>
| <transition name="Rejected" to="CreateReservation"></transition>
| <transition name="Approved" to="end1"></transition>
| </decision>
| </process-definition>
Waiting for any help or suggestions.
Thanks in advance!!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4165245#4165245
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4165245
17 years, 8 months
[JBoss jBPM] - Re: Error in jbpm 3.2.3?
by xigua
"kukeltje" wrote : now that is good information..... So 3.2.2 out of the box runs with jdk 1.5 of some JBoss AS server, but 3.2.3 does not. The log4j logging could show in what stage the process is in when it is signalled. 'The fork' is the fork in the websale example? Then the error only can be in org.jbpm.websale.ShipItem. Can you tell me
| - what the version number in that class is?
| - how you deployed this process or was it in the preconfigured database?
| - what happens if you run with jdk6?
At the very beginning of my question, I said "When I started the websale sample server", maybe that's not clear enough to you.
1. I have no idea in which jar I can find the class. The attached source code has the following private static final long serialVersionUID = 1L; but the class file in the jar may not be the same.
2. I didn't deploy. As I said, I just run the command without any modification, which means it running with the embedded hsqldb
3. It works fine on jdk1.6.0_07 but not 1.5.0_12
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4165219#4165219
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4165219
17 years, 8 months
[JBoss jBPM] - Re: Error in jbpm 3.2.3?
by xigua
"kukeltje" wrote : anonymous wrote :
| | I did search on google before posting the questions and I think the first one is more or less an INFO but rather an ERROR. "09:52:46,875 ERROR [STDERR] Jul 14, 2008 9:52:46 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
| | INFO: Added Library from: jar:file:/C:/tools/jbpm-jpdl-3.2.3/server/server/jbpm/tmp/deploy/tmp14048jbpm-console-exp.war/WEB-INF/lib/gravel.jar!/META-INF/gravel-compat.taglib.xml"
| |
|
| So why not mention that....
|
|
| anonymous wrote :
| | note The full stack trace of the root cause is available in the JBossWeb/2.0.1.GA logs.
| |
|
| So why did you not post this? and only the 'screenshot' part
|
| anonymous wrote :
| | For the second one, I know what it means and that's why I put my java version number in there.
| |
|
| I think you partly do or you give to little info again. The error means a class which is compiled with a newer JDK tries to be run by an older JDK/JRE. So just mentioning one jdk (which one is that btw, the one running jBPM or the one used to compile your actionhandler?) is not enough.
|
| For these kinds of reasons I (sometimes) give short, maybe that not politically correct anwsers on these kinds of questions.
|
| jBPM itself is running on 1.4, 1.5 and 1.6 but your classes might not
|
| HTH
I tried to run the websale example by directly executing jbpm-jpdl-3.2.3/server/start.bat
none of my code involved.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4165095#4165095
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4165095
17 years, 8 months