[jBPM] New message: "Re: getting name of leaving transition from decision node (jbpm 4.0)"
by praneet nandan
User development,
A new message was posted in the thread "getting name of leaving transition from decision node (jbpm 4.0)":
http://community.jboss.org/message/529600#529600
Author : praneet nandan
Profile : http://community.jboss.org/people/praneet
Message:
--------------------------------------------------------------
ya form submission is in task node and there after is decision node
what i want is value in combobox should cm from the transitions taking from decision node
<task assignee="#{hrname}" g="104,114,155,52" name="Select-Student">
<transition g="-42,-18" name="to Selected?" to="Selected?"/>
</task>
<decision name="Selected?" g="96,102,48,48" >
<handler class="jbpm.MyHandler" />
<transition name="Select" to="send-interview-email" g="120,60:-36,23" />
<transition name="Reject" to="end1" g=":-15,-21" />
</decision>
so i want Select and Reject in combobox.
meaning is that suppose after some day i also want
one transition like pending, so i can dynamically include this in
my combobox
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529600#529600
16 years, 1 month
[JBoss Cache] New message: "Re: is this a good use for jboss cache"
by Galder Zamarreno
User development,
A new message was posted in the thread "is this a good use for jboss cache":
http://community.jboss.org/message/529587#529587
Author : Galder Zamarreno
Profile : http://community.jboss.org/people/galder.zamarreno@jboss.com
Message:
--------------------------------------------------------------
How accurate does "Show logged on users" need to be? If 100% accuracy is not needed, you could use a cache instance configured with REPL_ASYNC so that all logged in data is replicated to all nodes and hence, showing all logged in should be just a matter of querying the entire cache contents of one node. I suspect this logged in caching would require a fair bit of cache writes and since you'd have at least 8 nodes in the cluster, I would not recommend using REPL_SYNC, since it would force you to wait for responses from all nodes.
Now, if you also wanted to be able to present the users that are logged to a particular node, you could make sure that the FQN contains the node name, i.e. /users/node1 and then only query that FQN.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529587#529587
16 years, 1 month
[jBPM Development] New message: "Swimlane clarification"
by john britto
User development,
A new message was posted in the thread "Swimlane clarification":
http://community.jboss.org/message/529583#529583
Author : john britto
Profile : http://community.jboss.org/people/brittobics
Message:
--------------------------------------------------------------
i have situation
In which i have two roles of swimlane Buyer and Seller
The problem is can i assign two swimlane in one task as i have done it below my code
i think it is right to use
as it is
"
<task-node name="Fill F6">
<task name="trcwf:fillApplicationF6" swimlane="Seller,Buyer"></task>
"
please tell me if i am worng of assigning task to swimlane as Seller and Buyer in comma seperated values.
<swimlane name="Buyer">
<assignment class="org.alfresco.repo.workflow.jbpm.AlfrescoAssignment">
<actor>#{bpm_assignee}</actor>
</assignment>
</swimlane>
<swimlane name="Seller">
<assignment class="org.alfresco.repo.workflow.jbpm.AlfrescoAssignment">
<actor>#{bpm_assignee}</actor>
</assignment>
</swimlane>
<task-node name="Fill F6">
<task name="trcwf:fillApplicationF6" swimlane="Seller,Buyer"></task>
<transition to="NegotaionDecision" name="Negoation"></transition>
<transition to="Print & Upload Signed F6" name="Accepted"></transition>
</task-node>
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529583#529583
16 years, 1 month
[jBPM] New message: "Re: running decision node(jbpm 4.0) multiple times for single processInstance"
by Maciej Swiderski
User development,
A new message was posted in the thread "running decision node(jbpm 4.0) multiple times for single processInstance":
http://community.jboss.org/message/529581#529581
Author : Maciej Swiderski
Profile : http://community.jboss.org/people/swiderski.maciej
Message:
--------------------------------------------------------------
I would try something like that:
1. set count variable to 0 if it does not exist or increment by one if exists
2. extract information (email address, name, etc) for a student from list of selected students - for one student - use count to get correct student info
3. check is user is selected or rejected, id selected proceed with following steps if rejected repeat step 1 and 2
3. set variable that consists of this information - this information will be used by mail node to populate email message
4. forward flow to mail node
5. mail node sends the message end gets back to decision node for another verification
6. if there are more students to be notified repeat above steps
Have not tested that but I would give it a try...I think it is a one way to go to achieve your goal.
Cheers,
Maciej
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529581#529581
16 years, 1 month