7.3. jBPM 5 to JBoss ESB Integration

jBPM 5-to-JBossESB communication lets you use the JBPM for service orchestration. The two JBPM work item handler classes used to integrate these services are the EsbActionWorkItemHandler and the ESBServiceWorkItemHandler. The EsbActionWorkItemHandler is a request-reply type action that sends a message to a service and waits for a response. By contrast, the EsbServiceWorkItemHandler does not wait for a response.
You must provide a callback service within their jboss-esb.xml which contains the BPM5Callback action. The callback service's category and name are provided to the ESBActionWorkItemHandler so that it can contact the callback service. The following is an example of the configuration:
<service category="EsbJbpm5Example"
                 name="JBpm5CallbackService"
                 description="Service which makes Callbacks into jBPM">
            <listeners>
                <jms-listener name="JMS-DCQListener"
                              busidref="jBPMCallbackBus"
                              maxThreads="1"
                />
            </listeners>
            <actions mep="OneWay">
                <action name="action" class="org.jboss.soa.esb.services.jbpm5.actions.Bpm5Callback">
                    <property name="process-definition-name" value="sample.bpmn"/>
                </action>
            </actions>
        </service>
      </services>

Important

The process definition names need to be unique between applications. You can define these names in the property shown below:
 <property name="process-definition-name" value="sample.bpmn"/>
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.