« Return to Thread: JMS exceptions in Mule 2.2.1

Re: JMS exceptions in Mule 2.2.1

by Richard Swart :: Rate this Message:

Reply to Author | View in Thread

Here is a working example:

   <model name="jms-test-suite">
       <service name="Requester">
           <inbound>
               <vm:inbound-endpoint path="IN" synchronous="true"/>
           </inbound>
           <outbound>
               <chaining-router>
                   <jms:outbound-endpoint queue="RequestQueue"
synchronous="true"/>
                   <reply-to address="jms://ReplyQueue"/>
               </chaining-router>
           </outbound>
           <async-reply timeout="10000" failOnTimeout="true">
               <jms:inbound-endpoint queue="ReplyQueue"/>
               <single-async-reply-router/>
           </async-reply>
       </service>

       <service name="Replier">
           <inbound>
               <jms:inbound-endpoint queue="RequestQueue" synchronous="true"/>
           </inbound>
           <echo-component/>
       </service>
</model>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


 « Return to Thread: JMS exceptions in Mule 2.2.1