business-process-management

How to restart the process if the result of the web service is false [BonitaSoft]

冷暖自知 提交于 2019-12-11 17:04:08
问题 I have a process of Authentication which contain an instantiation form and a task connected to a web service which search for the username and tha password in the database and return 1 if it's exist and 0 if not. as you can see in the picture I could do this : if it's return 1 we pass to the step1 else we end the process what I want is if the web Service return 0 the process should be restarted automatically and come back to to the instantiation form !! 回答1: In order to access to Bonita

JBPM persistence examples - resuming a workflow

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-10 10:09:07
问题 I am evaluating JBPM 5.4 with a PoC and am trying to realize the benefits of persistence that the engine does when a StatefulKnowledgeSession is created with an appropriate EMF. i.e a use case example of, say, a case when a workflow, while in its execution flow encounters a jvm shutdown. How is resuming from point of failure handled? Are there examples which clearly show this resume behavior - which API's to use etc.. Also, are there other jbpm project examples to get used to the tool and

fatal: protocol error: bad line length character: Inva

北战南征 提交于 2019-12-08 13:08:32
while cloning repositories from bpm suite installed in Openshift.I am getting the following git error. fatal: protocol error: bad line length character: Inva Please help me to fix this. This error is generally seen when using an ssh url (like git@aserver:arepo ) The usual cause is, on the git repo hosting server side, a .profile or .bashrc which includes some echo: see Git FAQ It likely means you have some extraneous characters, info message or something upon logging into ssh in command mode. To test this, do: ssh user@git.example.com echo testing commands You should only see testing commands

Activiti BPM without activiti-explorer

我怕爱的太早我们不能终老 提交于 2019-12-08 09:39:11
问题 I'm totally new to Activiti and BPM in general. However, I would like to create a web-based workflow application for my company so internal/external users can use it. I don't want the users to log into Activiti-explorer to access the workflow and do their human tasks. So the application should look as a general web app. Is there anyway to do so? and any live demo? 回答1: you can use activiti api and access services of activiti through ProcessEngine. Every thing which is possible with activiti

fatal: protocol error: bad line length character: Inva

一曲冷凌霜 提交于 2019-12-08 08:10:18
问题 while cloning repositories from bpm suite installed in Openshift.I am getting the following git error. fatal: protocol error: bad line length character: Inva Please help me to fix this. 回答1: This error is generally seen when using an ssh url (like git@aserver:arepo ) The usual cause is, on the git repo hosting server side, a .profile or .bashrc which includes some echo: see Git FAQ It likely means you have some extraneous characters, info message or something upon logging into ssh in command

How to query the position of a process instance?

你。 提交于 2019-12-06 09:35:07
问题 I want to get the current position of a single instance in my process. Is it possible to get the name of the activity additionaly to the id as return value? 回答1: You can get the current position of your process instance using the following code, which will also give you the name of the activity(ies) when the process waits in multiple position. package org.camunda.bpm; import java.util.HashMap; import java.util.List; import java.util.Map; import org.camunda.bpm.engine.ProcessEngine; import org

Is there a Java API that creates BPMN? [closed]

喜你入骨 提交于 2019-12-06 08:37:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Is there a way to programmatically create BPMN 2.0 via a Java API? I'm aware that I can use a graphical modeling tool or create the BPMN XML by hand but I'm looking for a way to create it dynamically at run-time. In my case, the BPMN will be executed through jBPM. The jBPM docs say you can use their API to

Creating Process Map Diagrams using different packages in R

て烟熏妆下的殇ゞ 提交于 2019-12-06 06:20:27
the given script simply creates a process map diagram showing the flow of events in R. This field of study is called event log mining or process mining. I wish to know any other packages or functionality in R using which I can create similar maps and also make them interactive like ggplotly. Please help me with some links if possible. Thanks and please help. library(bupaR) library(edeaR) library(eventdataR) library(processmapR) library(processmonitR) library(xesreadR) library(petrinetR) patients %>% process_map() 来源: https://stackoverflow.com/questions/46602433/creating-process-map-diagrams

What are the differences between open source BPM tools (such as Activiti, bonita) & Windows Workflow Foundation

久未见 提交于 2019-12-06 03:56:35
问题 I was trying to find a free and open source BPM tool which is based on asp.net, but unfortunately i fail to find such a tool. But recently I read an article about Windows Workflow Foundation, so does it provide functionality that are similar to open source BPM tools such as Activiti , bonita, Joget, etc. Or Windows Workflow Foundation can not be used to build as full business process workflow as in Activiti and other open source BPM tools. 回答1: The first thing to remember is that WF is not a

JBPM persistence examples - resuming a workflow

依然范特西╮ 提交于 2019-12-05 21:20:15
I am evaluating JBPM 5.4 with a PoC and am trying to realize the benefits of persistence that the engine does when a StatefulKnowledgeSession is created with an appropriate EMF. i.e a use case example of, say, a case when a workflow, while in its execution flow encounters a jvm shutdown. How is resuming from point of failure handled? Are there examples which clearly show this resume behavior - which API's to use etc.. Also, are there other jbpm project examples to get used to the tool and learn about the API. So far, I have access to the following:- https://github.com/droolsjbpm/jbpm/tree/5.4