[JBoss jBPM] - Re: SQL error executing test process
by ajvarela
Im using this test:
public class workflowTest extends JbpmTestCase {
|
| long deploymentDbid;
|
| //Variables
| Integer A = 1;
| Integer B = 1;
| Integer C = 0;
| Integer D = 1;
| Integer E = 1;
| Integer F = 1;
|
|
| protected void setUp() throws Exception {
| super.setUp();
|
| deploymentDbid = repositoryService.createDeployment()
| .addResourceFromClasspath(
| "org/workflow/quivir/workflowSumMul.jpdl.xml").deploy();
| }
|
| protected void tearDown() throws Exception {
| repositoryService.deleteDeploymentCascade(deploymentDbid);
|
| super.tearDown();
|
| }
|
| public void testWorkflowProcess() {
| Map<String, Integer> variables = new HashMap<String, Integer>();
| // Entradas
| variables.put("a", A);
| variables.put("b", B);
| variables.put("c", C);
| variables.put("d", D);
| variables.put("e", E);
| variables.put("f", F);
|
| ProcessInstance processInstance = executionService
| .startProcessInstanceByKey("workflowSumMul", variables);
| }
| }
I have detected that the problem occur in the tearDown method when super.tearDown() is called.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241666#4241666
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241666
16 years, 9 months
[JBoss jBPM] - Re: Effort Estimation Technique for jBPM
by smart_umesh_123
TeamWorks is Lombardi's BPM Tool for creating Business Process.
Currently application is using TeamWorks to define such processes. We want to replace it with jBPM. So I want to do analysis that how much effort will be required to define same processes using jBPM.
I understand many parameters can be considered. But considering a simple process, how easy it is to do in jBPM
e.g.
I am posting one example of TeamWorks BPD. I want your input about how easily we can develop such type of BPD using jBPM.
Process Definition: Meeting Reconciliation
There will be two swimlanes namely Meeting Organizer and System (TeamWorks Process)
1) After meeting has successfully taken place/occurred, control comes to Meeting Reconciliation
2) System sends reminder mails stating meeting is pending for re-conciliation. (in this case TeamWorks has email address stored in it's DB)
3) Meeting Requestor will check his mail and complete his re-conciliation task. If Requestor ignore the email then after 15/30 days process # 2 will be executed again.
4) even if Requestor has not completed re-conciliation within 35 days, System will close the meeting.
I am sorry for not pasting Process Diagram because i couldn't able to insert image.
One more point to add here is, actual application have business process which calls other process and web service.
Let me know if you need more information.
Thanks
Chintan
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241629#4241629
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241629
16 years, 9 months