Using a Selector in Camel JMS-Component

Selector are Properties which are set in the Header of the JMS Message so that you can filter only the messages which are compliant with the filter. You can set the selector using the selector attribute which is an SQL 92 predicate that is used to filter messages within the broker. You may have to encode special characters like ‘=' as %3D.

Read more

Using Camel direct Component

In Camel the direct: component provides direct, synchronous invocation of any consumers when a producer sends a message exchange. it provides a simple mechanism for linking together routes just like in programming code you would call functions.

Read more

Invoking a jBPM 6 Process from Camel Spring

The Camel jbpm component provides integration with Business Process Management (BPM) Suit jBPM 6. Behind the hoods It uses kie-remote-client API to interact with jBPM instance over REST. Let’s see an example of it:

Read more