jbpm

Migrating YAWL files (*.ywl) to BPMN 2.0 schema files

心不动则不痛 提交于 2020-01-23 16:44:45
问题 I'm trying to migrate from YAWL engine to another workflow engine, but I have about 500 (*.ywl) files, which I'm trying to convert to BPMN 2.0 and I think it's not reasonable to convert all of them manually. The question is if there is any tool to convert all of these files automatically? 回答1: Looks like not, you will have to make a parser to translate to bpmn xml. 回答2: Strangely, I just learned about YAWL and I am indeed very interested in Buisness Process Modeling (BPM). In other words, it

Merging two versions of bpmn (xml) files

邮差的信 提交于 2020-01-21 10:06:33
问题 We develop processes in jBPM Business Central. And we create two branches for two developers, and every developer make some changes. After that, I try to merge changes, but get a lot of conflicts like this: <<<<<<< HEAD <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_B522FC25-C305-43A2-B22B-CF9D2280A47B" id="_rucp8h2REeqUr8GsL--YmA"> ======= <bpsim:ElementParameters xsi:type="bpsim:ElementParameters" elementRef="_B522FC25-C305-43A2-B22B-CF9D2280A47B" id="

Embedding Workbench JBPM In Application

 ̄綄美尐妖づ 提交于 2020-01-17 08:56:37
问题 i'm newbie in jbpm, i want to display some jbpm perspective in my web application, i do like this example <html> <head> <title>Test</title> </head> <body> <iframe id="ifrm" height='800' src='http://localhost:8080/jbpm-console?standalone=true&perspective=Tasks List&header=ComplementNavArea' width='1000'></iframe> </body> </html> Inside src attribute of iframe i have perspective and header parameter. In example, they have values but i don't know where they get those values. Thanks for your help

Embedding Workbench JBPM In Application

廉价感情. 提交于 2020-01-17 08:55:40
问题 i'm newbie in jbpm, i want to display some jbpm perspective in my web application, i do like this example <html> <head> <title>Test</title> </head> <body> <iframe id="ifrm" height='800' src='http://localhost:8080/jbpm-console?standalone=true&perspective=Tasks List&header=ComplementNavArea' width='1000'></iframe> </body> </html> Inside src attribute of iframe i have perspective and header parameter. In example, they have values but i don't know where they get those values. Thanks for your help

jBPM 6.1 cannot resume process

﹥>﹥吖頭↗ 提交于 2020-01-17 03:59:15
问题 We can suspend a process instance like this : org.jbpm.process.instance.ProcessInstance processInstance = //...; processInstance.setState(STATE_SUSPENDED); and to resume it : kieSession.getWorkItemManager().completeWorkItem(processInstance.getId(), params); but it doesn't work! ... what is the problem? Thanks. 回答1: To resume a process, use processInstance.setState( ProcessInstance.STATE_ACTIVE ). The WorkItemManager operates on workItems (web service calls, human tasks, customer handlers etc.

Issue in deploying JBPM 5.4 console server war on Websphere application server with JPA2 feature pack to use oracle database

家住魔仙堡 提交于 2020-01-16 12:36:10
问题 Facing issue in deploying JBPM 5.4 console server war to use oracle database. Please find below the stacktrace. [10/31/13 19:17:01:295 IST] 00000009 JPAPUnitInfo E CWWJP0015E: An error occurred in the org.hibernate.ejb.HibernatePersistence persistence provider when it attempted to create the container entity manager factory for the org.jbpm.persistence.jpa persistence unit. The following error occurred: [PersistenceUnit: org.jbpm.persistence.jpa] Unable to build EntityManagerFactory [10/31/13

Integrate kie-server into spring boot application

 ̄綄美尐妖づ 提交于 2020-01-16 08:38:11
问题 I want to integrate all the kie-server autoconfiguration (especially JBPM) in my spring boot application. I added these gradle dependencies in a separate module of my project dependencies { compile group: 'org.kie', name: 'kie-server-spring-boot-starter', version: '7.29.0.Final' compile group: 'xerces', name: 'xercesImpl', version: '2.12.0' } then I added the configuration properties suggested by this link https://github.com/kiegroup/droolsjbpm-integration/blob/master/kie-spring-boot/kie

Terminate process at any step (jbpm)

耗尽温柔 提交于 2020-01-05 19:51:08
问题 I'd like to implement the ability to terminate the process instance at any user task of my jbpm project. I know that I should theoretically be able to do this with a termination end event attached to any task in my workflow, but this seems like a bad solution to have so many terminate events. Is there a better, more efficient, more readable way to do this? 回答1: I don't know if this is better, but you can do this: model, in parallel, a intermediate catch signal followed by your terminate event

Terminate process at any step (jbpm)

房东的猫 提交于 2020-01-05 19:49:53
问题 I'd like to implement the ability to terminate the process instance at any user task of my jbpm project. I know that I should theoretically be able to do this with a termination end event attached to any task in my workflow, but this seems like a bad solution to have so many terminate events. Is there a better, more efficient, more readable way to do this? 回答1: I don't know if this is better, but you can do this: model, in parallel, a intermediate catch signal followed by your terminate event

jBPM How to get WorkItemHandler results

我只是一个虾纸丫 提交于 2020-01-05 14:11:13
问题 I have a service node which will be runned by a WorkItemHandler . At the end of executeWorkItem() I do: manager.completeWorkItem(workItem.getId(), resultMap); How can I access from other places the resultMap ? Where is is held? 回答1: What would you like to do with it? Where would you like to have access to it? These results are passed to the process instance, so in the task that was used to start this service, you can map these results back into process variables, so they can be used in the