This file contains 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
<twitter:config name="jsontwitter" format="JSON" | |
consumerKey="${twitter.consumer.key}" consumerSecret="${twitter.consumer.secret}"/> | |
<flow name="twiiter-search"> | |
<poll frequency="5000"> | |
<twitter:search query="mule" config-ref="jsonTwitter" /> | |
</poll> | |
</flow> |
This file contains 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
<twitter:config name="jsontwitter" format="JSON" | |
consumerKey="${twitter.consumer.key}" | |
consumerSecret="${twitter.consumer.secret}"/> |
This file contains 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="orderProcessingFlow"> | |
<inbound-endpoint ref="orderEndpoint"/> | |
<enricher target="#[variable:state_short]"> | |
<outbound-endpoint ref="stateLookup"> | |
<expression-transformer evaluator="xpath" expression="/order/address/zip" /> | |
</outbound-endpoint> | |
</enricher> | |
<outbound-endpoint ref="orderStep2"/> | |
</flow> |
This file contains 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
<logger message="just processed foo" level="DEBUG" /> |
This file contains 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
<logger message="Ooops! #[payload] is an invalid message!" level="ERROR" /> | |
<logger message="Accept Header is #[header:INBOUND:Accept]" level="INFO" /> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:http="http://www.mulesoft.org/schema/mule/http" | |
xmlns:amqp="http://www.mulesoft.org/schema/mule/amqp" | |
xmlns:file="http://www.mulesoft.org/schema/mule/file" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation=" | |
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.1/mule.xsd | |
http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/3.1/mule-file.xsd |
This file contains 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
<bridge name="nasdaqCompositePoller" exchange-pattern="one-way"> | |
<poll frequency="360000"> | |
<outbound-endpoint address="${nasdaq.composite.feed.url}" /> | |
</poll> | |
<amqp:outbound-endpoint ref="financialExchange" | |
routingKey="stockmarket.nasdaq.composite" /> | |
</bridge> |
This file contains 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="choiceFlow"> | |
<description> | |
Flow that shows the use of the choice element for content-based routing | |
<description> | |
<jms:inbound-endpoint queue="in"/> | |
<choice> | |
<when expression="/element/@name = 'foo'" evaluator="xpath"> | |
<jms:outbound-endpoint queue="fooQueue"/> | |
</when> | |
<when expression="/element/@name = 'bar'" evaluator="xpath"> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:file="http://www.mulesoft.org/schema/mule/file" | |
xmlns:jms="http://www.mulesoft.org/schema/mule/jms" | |
xsi:schemaLocation=" | |
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.1/mule.xsd | |
http://www.mulesoft.org/schema/mule/file http://www.mulesoft.org/schema/mule/file/3.1/mule-file.xsd | |
http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/3.1/mule-jms.xsd"> | |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.2" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:file="http://www.mulesource.org/schema/mule/file/2.2" | |
xmlns:jms="http://www.mulesource.org/schema/mule/jms/2.2" | |
xsi:schemaLocation=" | |
http://www.mulesource.org/schema/mule/core/2.2 http://www.mulesource.org/schema/mule/core/2.2/mule.xsd | |
http://www.mulesource.org/schema/mule/file/2.2 http://www.mulesource.org/schema/mule/file/2.2/mule-file.xsd | |
http://www.mulesource.org/schema/mule/jms/2.2 http://www.mulesource.org/schema/mule/jms/2.2/mule-jms.xsd"> | |
OlderNewer