如何将消息从ESB的主题发送到消息代理的队列

时间:2013-04-04 08:49:16

标签: wso2 message-queue wso2esb messagebroker

我在ESB中创建了主题,该主题由ESB中创建的代理订阅。在我的代理中,我提供了我在WSO2消息代理中创建的队列端点。因此,当我在队列中发布正由代理订阅的消息时,消息应该转到MB的队列,但这不会发生。我该怎么做才能做到这一点?我的代理代码是:

<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>

我该怎么做才能在主题中发布我的消息时,它应该在Message Brokers队列中可见?

1 个答案:

答案 0 :(得分:0)