Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
<camel:route>
<camel:from uri="vm:incomming" />
<camel:choice>
<camel:when>
<camel:simple>${body} contains 'demo success'</camel:simple>
<camel:to uri="bean:demo?method=process" />
</camel:when>
<camel:when>
<camel:simple>${body} contains 'demo fault'</camel:simple>
<camel:to uri="xslt:test.xsl"/>
<camel:to uri="bean:demo?method=process" />
</camel:when>
</camel:choice>
</camel:route>