Reputation: 37
i am using activiti-5.21.0. i have another application deployed on apache-tomee-plus-1.6.0. let say: user apply for leave from this application. Then i want to create activiti process for college staff to approve leave. what approach should i use? can we create activiti process remotely from another application?
Upvotes: 0
Views: 209
Reputation: 31
if you going to have more application to use activiti, you could consider for activiti server. All interaction via rest service and future upgrade will be easy
Upvotes: 0
Reputation: 301
Yes you, can: those are two different process definitions.
You got a few options, depending on what you mean with 'i am using activiti=5.21.0'. Let's assume you're using Activiti as an embedded library (you simply included the jar). The main thing you have to keep in mind is that in this setup, there is no 'activiti server', you have an embedded engine that connects to the same datasource. You could
Upvotes: 1