Am trying to build dynamic activiti flow with the code as put in the url. Am using local h2 store(
"workflow.h2.url": "jdbc:h2:mem:activiti;DB_CLOSE_DELAY=1000",
)
BpmnModel model = new BpmnModel();
Process process = new Process();
model.addProcess(process);
process.setId("PatchProcess");
process.setName("PatchProcessInstance");
process.addFlowElement(createStartEvent());
process.addFlowElement(createServiceTask("PatchingTask"));
process.addFlowElement(createEndEvent());
process.addFlowElement(createSequenceFlow("start", "PatchingTask"));
process.addFlowElement(createSequenceFlow("PatchingTask", "end"));
Deployment deployment = processEngine.getRepositoryService()
.createDeployment().addBpmnModel("dynamic-model-test.bpmn", model)
.key("my-process").deploy();
when i call
runtimeService.startProcessInstanceByKey("my-process") its giving me the below error.
org.activiti.engine.ActivitiObjectNotFoundException: no processes deployed with key 'my-process' . Can i get some help over it.
Its not creating the entry in ACT_RE_DEPLOYMENT table. Because of which this error. Not sure why this entry is not made.
Can i get some help here. Am stuck with this issue.
Its not creating the entry in ACT_RE_DEPLOYMENT table because of that when i invoke this
ExecutionEntity processInstance = (ExecutionEntity) runtimeService.startProcessInstanceByKey("ApiExecution",variables);
its giving me the error "
"
Hello, I have also encountered this problem; Could you please tell me how you solved it? thank you
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.