简体   繁体   中英

2 proxy service in ESB WSO2

I use WSO2 ESB (v4.8.1) and I have to do something like this. I have two proxy services. One is jms, second is http. First service gets message from a queue and turns a builder to process the message. After that, service should send via http this message to second service.

In first service after process message I have:

 <outSequence>
     <send>
        <endpoint>
           <http method="post" uri-template="http://localhost:port/services/Two"/>
        </endpoint>
     </send>
  </outSequence>

In second service:

 <inSequence>
     <log level="custom">
        <property name="serviceTwo" value="Service Two starts...."/>
     </log>
  </inSequence>

The problem is, the second proxy service doesn't get this message. Anybody knows how to fix it?

嗨,您为什么要发送乱序,应该是乱序。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM