我试图弄清楚如何确定使用Camunda提供的REST API的BPM流程调用是否成功,将从Node.js应用程序调用此API:
http://localhost:8080/engine-rest/process-definition/key/TestBPM/start
{
"links": [
{
"method": "GET",
"href": "http://localhost:8080/engine-rest/process-instance/72cc8ced-42e9-11e6-9c9d-4c72b965fca0",
"rel": "self"
}
],
"id": "72cc8ced-42e9-11e6-9c9d-4c72b965fca0",
"definitionId": "TestBPM:4:128925ef-42e9-11e6-9c9d-4c72b965fca0",
"businessKey": null,
"caseInstanceId": null,
"ended": true,
"suspended": false,
"tenantId": null
}
在那个JSON回复中,我收到了进程结束,但我需要知道的是哪个结束状态结束了进程....我有办法做到这一点吗?
BPM:
答案 0 :(得分:5)
通常您会使用某些服务或脚本任务来处理您的数据。您的BPMN图仅包含事件和非常不寻常的网关。
然而,使用您的图表,有两种方法可以实现您的目标: