Reputation: 193
jBPM 6.2 is running nicely on JBoss. From a WebSphere v855 application (camel route) we want to use the jBPM REST API to communicate to jBPM. Preferably with as little as possible dependencies.
In the user guide chapter 17.2 REST the documentation says:
"When using Java code to interface with the REST API, the classes used in POST operations or otherwise returned by various operations can be found in the (org.kie.remote:)kie-services-client JAR."
See: http://docs.jboss.org/jbpm/v6.2/userguide/jBPMRemoteAPI.html#d0e14165
Since the REST payload can be quite complex, it seems this is exactly what we want, use the api classes to generate the operations data (camel body for the REST call).
For jBPM 6.1 there is a maven download for the kie-services-client, for 6.2 not. Where is the 6.2 version?
Should we use another approach, can we use the 6.1 version or ...
Upvotes: 1
Views: 1186
Reputation: 1064
Looks like the artifact may have changed. See:See Maven Repo
From POM:
<parent>
<groupId>org.kie.remote</groupId>
<artifactId>kie-remote</artifactId>
<version>6.2.0.Final</version>
</parent>
<artifactId>kie-remote-client</artifactId>
Upvotes: 2