business-process-management

is there any nice way to step back in an activiti workflow task?

假如想象 提交于 2019-12-24 13:21:05
问题 I am using activiti bpm engine to control my workflow. Is it posible to step back if I made mistake in chioce? if no, what should be done? Must I complete the workflow and start a new one? 回答1: There is no such thing as 'going back' in workflow, it's well against.. the flow ;) If you wan't to give user the possibility to 'step back' you can model additional flows again to the same task which has been just completed. 来源: https://stackoverflow.com/questions/16193831/is-there-any-nice-way-to

Accessing KieSession from jbpm6 WorkItemHandler

微笑、不失礼 提交于 2019-12-24 04:22:42
问题 I'm using jbpm-console (6.0.0.Final) with custom work item handlers. I've embedded a custom work item handlers JAR in my jbpm-console WAR as described in post #7 here: https://community.jboss.org/thread/221748 This is all fine so far, as I can successful start a process definition in jbpm-console, and it kicks off my custom WorkItemHandler code. However, in my WorkItemHandler, I want to set some variables on the ProcessInstance. When I try something like this: public void executeWorkItem

Migrating Activiti tasks from old process to new process

[亡魂溺海] 提交于 2019-12-22 05:38:13
问题 I have an Activiti project for some business process. The problem is about migration. An existing process has some unfinished tasks. I want to modify the existing process by adding a new step. Now, when I create a new task, this new task will be processed according to the updated process. And unfinished tasks will be processed according to the old process. Let's take the following example: https://spring.io/blog/2015/03/08/getting-started-with-activiti-and-spring-boot In this example,

Work Flow in Camel vs BPM

白昼怎懂夜的黑 提交于 2019-12-20 12:37:14
问题 We have used Apache camel as a Workflow engine.First Wehave WebService One and wait for the response and based on the response call WebService 2 or WebService 3.Its a pure WorkFlow and have couple of WorkFlow Steps like this.I have got less chances to work on a BPM product , like JBOSS BPM etc. Other than long running and support for human task any other good reason we have to choose a BPM product ? If both long running and human task support are not needed in our project can we use Camel or

Which workflow engine to choose? [closed]

放肆的年华 提交于 2019-12-20 08:29:09
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are currently in the process of evaluating a BPM engine and I'd really appreciate the community input. I am doing my own due

Which workflow engine to choose? [closed]

末鹿安然 提交于 2019-12-20 08:29:02
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are currently in the process of evaluating a BPM engine and I'd really appreciate the community input. I am doing my own due

Integrate Activiti Modeler using Maven

我只是一个虾纸丫 提交于 2019-12-19 10:22:37
问题 How one can integrate Activiti Modeler into their own web application and keep all the advantages Maven suggests? The probem is that Activiti Modeler in Maven is part of Activiti Explorer. There are several questions online from people who want to develop their own web applications, use Modeler to edit the processes, but don't need other Explorer features. For example, Activiti BPM without activiti-explorer or How To Integrate Activiti Modeller Into own Web Application 回答1: I have managed to

How to run IBM BPM Rest api call from Post man client

十年热恋 提交于 2019-12-13 12:50:52
问题 I am trying to excute IBM BPM Rest api call from Post man client Ex: https://ustrial01.bpm.ibmcloud.com/bpm/dev/rest/bpm/wle/v1/user/current?includeInternalMemberships=true&parts=all I set Basic Authentication values( Username, password) I am getting status code as 200, but response i am getting some HTML code. Can any one help me on this.Any help is greatly arreciated. 回答1: If you are getting a 200 status then why do you need the response? the status code should be good enough for you

Unable to run the demo setup

て烟熏妆下的殇ゞ 提交于 2019-12-13 02:08:55
问题 I have downloaded the Activity 5.10 zip file and then i have downloaded and configured the Apache ANT and i test it and it worked successfully. But i am unable to run the demo file as specified in this link http://activiti.org/userguide/#demo.setup if i type the following using the cmd command line:- C:\activiti-5.10\activiti-5.10\setup>ant demo.start I will get the following error:- 'ant' is not recognized as an internal or external command, operable program or batch file. Can anyone help me

Convert a JSON to TW Object of type ANY

混江龙づ霸主 提交于 2019-12-11 17:05:07
问题 Using IBM BPM 8.6 I have a JSON as follows: tw.local.person = "{\"firstName\":\"Ahmed\",\"job\":\"Doctor\"}"; I am using the BPM helper toolkit to convert the json to TW Object tw.local.outputObject = BPMJSON.convertJSONToTw(tw.local.person); RESULTS: If the outputObject is of type Person (with the attributes firstName and job), it works and the object is created. If the outputObject is of type any , it doesn't work How can I get the output in an any object? Any workaround or a a tweak in the