I have created topic in ESB, which is subscribed by the proxy created in ESB. In my proxy i have provided the endpoint of queue that i have made in WSO2 Message broker. So when i publish message in my queue that is being subscribed by proxy the message should go to the queue of MB but this is not happening. What should i do to achieve this? My proxy code is:
<proxy xmlns="http://ws.apache.org/ns/synapse" name="CNN" transports="http" statistics="disable" trace="disable" startOnLoad="true">
<target>
<inSequence>
<log level="custom">
<property name="STATE" value="message is sent to queue"/>
</log>
<property name="OUT_ONLY" value="true"/>
<property name="FORCE_SC_ACCEPTED" value="true" scope="axis2"/>
</inSequence>
<outSequence/>
<endpoint>
<address uri="jms:/CNN?&transport.jms.DestinationType=queue"/>
</endpoint>
</target>
<description></description>
</proxy>
What should i do so that when i publish my message in topic it should be visible in Message brokers queue?