1

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

我应该怎么做,当我在主题中发布我的消息时,它应该在消息代理队列中可见?

4

1 回答 1

0

这篇博文详细介绍了如何使用主题。

http://madhukaudantha.blogspot.com/2012/07/wso2-esb-topic-tutorial-for-beginners.html?q=topic

于 2013-04-04T14:14:00.453 回答