1

我有一个服务正在侦听一个队列,我想将消息转发给一个完全不同的代理。这在 WSO2 ESB 中是否可行,如果可以,如何完成此配置?我尝试使用其他代理的传输 url 指定端点,但这不起作用......

4

1 回答 1

1

这是我用来从 JMS 队列中挑选并发布到另一个队列(在 ActiveMQ JMS 提供程序上)的 WSO2 ESB 代理服务配置:

<proxy xmlns="http://ws.apache.org/ns/synapse" name="JMS_to_JMS_proxy_service" transports="jms" statistics="disable" trace="disable" startOnLoad="true">
   <target>
      <inSequence>
         <log level="full" separator="," />
         <property name="OUT_ONLY" value="true" scope="default" type="STRING" />
         <send>
            <endpoint>
               <address uri="jms:/Destination_Queue_Name?transport.jms.ConnectionFactoryJNDIName=QueueConnectionFactory&amp;java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory&amp;java.naming.provider.url=tcp://Your_Host:61616&amp;transport.jms.DestinationType=queue" trace="disable">
                  <timeout>
                     <duration>30000</duration>
                     <responseAction>fault</responseAction>
                  </timeout>
                  <suspendOnFailure>
                     <initialDuration>0</initialDuration>
                     <progressionFactor>1.0</progressionFactor>
                     <maximumDuration>0</maximumDuration>
                  </suspendOnFailure>
               </address>
            </endpoint>
         </send>
      </inSequence>
   </target>
   <parameter name="transport.jms.ContentType">
      <rules>                              
         <jmsProperty>contentType</jmsProperty>                              
         <default>text/plain; charset=ISO-8859-1</default>                    
      </rules>
   </parameter>
   <parameter name="transport.jms.ConnectionFactory">myQueueConnectionFactory</parameter>
   <parameter name="transport.jms.DestinationType">queue</parameter>
   <parameter name="transport.jms.Destination">Source_Queue_Name</parameter>
</proxy>                                

不要忘记在 Configure -> Transports 菜单下启用 JMS Transport Sender。也myQueueConnectionFactory指配置 -> 传输 -> JMS 传输侦听器下的参数集。

更新:较新版本的 WSO2 ESB 将没有 GUI 选项来启用/禁用传输。为此,您必须修改{ESB_ROOT_DIRECTORY}/repository/conf/axis2/axis2.xml文件并取消注释与您的环境(ActiveMQ、WSO2 MB 等)对应的 JMSListener/JMSSender

于 2013-06-27T17:01:31.297 回答