Hi, right now our company is doing a Office Automation (OS) application, we need to integrate a module of business process management. We are using the framework of Angular2. Can somebody provide some ideas how to integrate flowable into our project.
We tried to delegate the BPM back-end to flowable-rest which provides a lot of rest api. But it dose not support visually define and deploy process definition.
We also tried to use flowable-modeler to define and deploy process, but we can not use rest api to find these defined process. So I guess the flowable-modeler and flowable-rest are two separated application.
My email is ziwenzzw@gmail.com, so if anybody can provide some ideas or have the intention to corporate with us, please contact me.
flowable-modeler uses REST API from flowable-task app. If you want to use flowable-rest interface to deploy app, you can just export app from modeler (bar or zip) and deploy it by http://www.flowable.org/docs/userguide/index.html#_deployment
REST call.
Hi, Martin. I got another question. You mean the flowable-task has the similar set of rest apis with flowable-rest, that can communicate with the process engine? Is there some documents about flowable-task rest api?
Second question is I need to transfer the user data from our own application to the flowable-modeler/flowable-idm. So flowable-modeler can assign task to our own users. We cannot use flowable-rest to do this job, because they are two separate applications and use separate database.
The Flowable Task application includes the full Flowable REST API, just like the Flowable REST application. So the REST documentation is valid for the Flowable Task application as well.
The Flowable IDM application is an example and easy to setup way for user and group management. You can also use LDAP out-of-the-box, and you can implement the IdentityService on top of your own identity tables / application.