Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
jBPM ComponentAvailable as of Camel 2.16 The jbpm component provides integration with Business Process Management (BPM) Suit jBPM. It uses kie-remote-client API to interact with jBPM instance over REST. The component supports only producer. Maven users will need to add the following dependency to their <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-jbpm</artifactId> <version>x.x.x</version><!-- use the same version as your Camel core version --> </dependency> URI formatjbpm::hostName[:port][/resourceUri][?options] URI Options
Message Headers
ExampleBelow is an example route that starts a business process with id project1.integration-test and deploymentId org.kie.example:project1:1.0.0-SNAPSHOT from("direct:start") .setHeader(JBPMConstants.PROCESS_ID, constant("project1.integration-test")) .to("jbpm:http://localhost:8080/business-central?userName=bpmsAdmin&password=pa$word1" + "&deploymentId=org.kie.example:project1:1.0.0-SNAPSHOT");
|