Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created September 26, 2014 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marianogonzalez/aec40ee0345585dfff7d to your computer and use it in GitHub Desktop.
Save marianogonzalez/aec40ee0345585dfff7d to your computer and use it in GitHub Desktop.
<flow name="test">
<http:inbound-endpoint host="localhost" port="${port}" exchange-pattern="request-response"/>
<jersey:resources>
<component class="org.mule.module.jersey.HelloWorldComponent">
<binding interface="org.mule.module.jersey.HelloWorldInterface">
<flow-ref name="TransformationFlow" />
</binding>
</component>
</jersey:resources>
</flow>
<flow name="TransformationFlow">
<set-payload value="Hello World!" />
</flow>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment