Created
August 28, 2014 07:38
-
-
Save adrianhsieh/a1ac78b69a36c666359b to your computer and use it in GitHub Desktop.
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="jms-demo-senderFlow1" doc:name="jms-demo-senderFlow1"> | |
| <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="start-demo" doc:name="HTTP"/> | |
| <set-session-variable variableName="demo-session" value="#['this is session']" doc:name="Session Variable"/> | |
| <set-property propertyName="demo-outbound" value="#['this is outbound']" doc:name="Property"/> | |
| <set-variable variableName="demo-flowvar" value="#['this is flow variable']" doc:name="Variable"/> | |
| <set-payload value="#['demo-message']" doc:name="Set Payload"/> | |
| <logger level="INFO" doc:name="Logger"/> | |
| <jms:outbound-endpoint queue="blog-demo" connector-ref="Active_MQ" doc:name="JMS"/> | |
| </flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment