« Return to Thread: JMS exceptions in Mule 2.2.1

Re: JMS exceptions in Mule 2.2.1

by ron.fulkerson :: Rate this Message:

Reply to Author | View in Thread

Hi,

Thanks for the reply.  I have tried you suggestion, but still have not
found any success.  I am setting the connection as:
<jms:activemq-connector name="jmsConnector"
brokerURL="tcp://localhost:4101" specification="1.1"
disableTemporaryReplyToDestinations="true"/>

I also added the reply-to tag to the outbound router, as follows:
        <service name="ZVCRouter">
            <inbound>
                <inbound-endpoint ref="ZVCOutgoing"/>
            </inbound>
            <outbound>
                <pass-through-router>
                    <outbound-endpoint ref="ZVCCommands">
                        <jms:object-to-jmsmessage-transformer/>
                    </outbound-endpoint>
                    <reply-to ref="ZVCResponses"/>
                </pass-through-router>            </outbound>
        </service>

The ZVCCommands and ZVCResponses topics exist, and the outbound message
is being received.  There is no response from the service though.  I
have tried to configure the service (shown below) with both an outbound
endpoint and without.  Neither seem to work.  The request/response MEP
documentation indicates that an outbound endpoint should not exist - is
this still the case using the reply-to tag?

Thanks for all the help,
Ron

<service name="ZVCService">
    <inbound>
        <inbound-endpoint synchronous="true" ref="ZVCCommands">
            <jms:jmsmessage-to-object-transformer/>
                </inbound-endpoint>
            </inbound>
        <component
class="com.zvideo.vware.services.zvcontroller.ZVCEndpoint" />
</service>

Puneet Gupta wrote:

> In 2.2 you can set disableTemporaryReplyToDestinations="true" attribute in the <jms:activemq-connector> tag.
>
> If you are doing request/reply then specify a Real Topic/Queue using the <replyTo> tag in the in the outbound router.
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>     http://xircles.codehaus.org/manage_email
>
>
>  

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

    http://xircles.codehaus.org/manage_email


 « Return to Thread: JMS exceptions in Mule 2.2.1