Home

Awesome

##jBPM 6 integration with Vert.x 2.x

jBPM 6 integration with Vert.x 2.x to allow to run jBPM as vert.x modules.

####Installation:

####Build projects:

####Run:

vertx runzip target/jbpm-vertx-module-1.0.0-mod.zip -conf ../conf/receive-data.conf -cluster -cluster-host localhost
vertx runzip target/jbpm-vertx-module-1.0.0-mod.zip -conf ../conf/send-data.conf -cluster -cluster-host localhost

now both instances should be up and running and available for executing processes.

####Check what processes are available

vertx run get-processes.js -cluster -cluster-host localhost

Start receive data process

vertx run start-receive-process.js -cluster -cluster-host localhost

Now in the console that runs receive-data vert.x instance you should see stuff happening and on the caller side information about process instance id

if you run in managed mode you should see this instance in workbench as well.

Start send data process

vertx run start-send-process.js -cluster -cluster-host localhost

Now in the console that runs send-data vert.x instance you should see stuff happening and on the caller side information about process instance id, in addition to that on instance that runs receive-data you should see that message was received and instance was completed.