bpmn

How do I create a task shared by different pools in Bonita Studio?

限于喜欢 提交于 2019-12-24 00:12:58
问题 I'm using Bonita Studio and I would like to create a task which would be shared between two pools and an other shared between two pool lanes. I'm trying to draw all processes in a web dev company to then optimize them, and a visual support is probably the best way to show the modifications. With this goal in mind I'd need to represent meetings with the different people participating to it. Am I using the right notation model? If so how do I show these meetings? If not what is a better

BPMN.IO examples not working in localhost

守給你的承諾、 提交于 2019-12-23 04:47:33
问题 I want to run bpmn in localhost. After browsing whole day, I tried this steps install nodejs npm install bpmn-js // in cmd After this don't know want to do. also tried downloading bpmn example files saved it in local path and opened "localhost/bpmn-js-examples-master/properties-panel/app" in chrome. and getting error in console => "Uncaught ReferenceError: require is not defined" To solve this I have include require.js file to index.html ( inside "localhost/bpmn-js-examples-master/properties

How to specify which start event should be called from a BPMN callActivity

我的未来我决定 提交于 2019-12-22 08:08:38
问题 From http://www.omg.org/spec/BPMN/2.0.2/PDF on page 238: If the Process is used as a global Process (a callable Process that can be invoked from Call Activities of other Processes) and there are multiple None Start Events, then when flow is transferred from the parent Process to the global Process, only one of the global Process’s Start Events will be triggered. The targetRef attribute of a Sequence Flow incoming to the Call Activity object can be extended to identify the appropriate Start

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,

BPMN: multiple roles in a row

落花浮王杯 提交于 2019-12-21 23:37:04
问题 How do I model a process which can start by either Role1 OR Role2 performing the first task? I would not like to use "Role1 or Role2" in the lane description 回答1: The BPMN specification does explicitly not specify the exact purpose of lanes (p. 304/335 in PDF). Consequently, the approach Role1 or Role2 is actually compliant with the specification. The approach is also not far away from good practice. Adding multiple roles and even individual users as candidates to a task is often possible

How do I illustrate both sides of a transaction in BPMN?

丶灬走出姿态 提交于 2019-12-21 22:10:48
问题 We have a number of processes that rely on interactions between two people/groups. I am trying to figure out the best way to illustrate this in BPMN. CONSIDER: Using the example of a pizza order, I call a pizzeria to order, an order-taker answers the phone and then we discuss my order. I am trying to accurately capture the "we discuss the order" portion of the process. Here is how I envision the diagram playing out. I call, they answer, then there's branching for a simultaneous exchange,

Library for rendering BPMN 2.0 in a browser

雨燕双飞 提交于 2019-12-20 08:29:29
问题 For a science project I'd need to render/display a BPMN 2.0 model in a web browser. Are there any libraries available to only render the diagram? (I don't need to edit it or do anything other than displaying it). Bonus points if said library is also able to render/display petri nets. The solution should be open source. Thanks! 回答1: Activiti http://activiti.org/ pretty advanced Java developed by several vendors, e.g. http://signavio.com (free for university use: http://academic.signavio.com/ )

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

JBPM6 Service task to execute java code

五迷三道 提交于 2019-12-17 20:00:01
问题 I am new in JBPM6. My scenario is like this that i want to execute some java code using JBPM service task.From documentation i am not able to understand how to use domain specific process and Work Item Handler in this type of code. If someone have sample example of it please share.That will be very much helpful. Thank you in advance. 回答1: Here is how to add a handler inside a Eclipse maven project. I call it the Awesome handler, but your should pick a more specific name. 1) First create a

How can I model many parallel activities in BPMN 2.0?

拈花ヽ惹草 提交于 2019-12-13 17:28:24
问题 I have 40 activities that do not depend on each other. I want to model them in a such way, that execution engine processes them in multiple parallel flows in any order. Execution engine may optimize their execution order (for example take as first the activity, that took the most time at the previous run). Is it possible with BPEL or BPMN 2.0? If yes - how? With a Parallel Gateway I will have to draw 40 edges, as far as I understand. Is there any better way? Thanks! 回答1: Yes, both languages