This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<flow name="main"> | |
<jms:inbound-endpoint queue="in" /> | |
<!-- check if this application is running in the primary pooling instance --> | |
<choice> | |
<when evaluator="groovy" expression="muleContext.isPrimaryPollingInstance() == true"> | |
<!-- process the message --> | |
<append-string-transformer message=" Received" /> | |
<logger level="INFO" message="#### IS PRIMARY POLLING INSTANCE, PROCESSING THE MESSAGE" /> | |
<vm:outbound-endpoint path="out"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pluginRepository> | |
<id>mulesoft-release</id> | |
<name>mulesoft release repository</name> | |
<layout>default</layout> | |
<url>https://repository.mulesoft.org/releases/</url> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</pluginRepository> |
OlderNewer