我使用WSO2 ESB(v4.8.1),我必须做这样的事情。 我有两个代理服务。一个是jms,第二个是http。第一个服务从队列中获取消息并转动构建器来处理消息。之后, 服务应该通过http发送此消息给第二服务。
在第一个服务后处理消息中我有:
<outSequence>
<send>
<endpoint>
<http method="post" uri-template="http://localhost:port/services/Two"/>
</endpoint>
</send>
</outSequence>
在第二次服务中:
<inSequence>
<log level="custom">
<property name="serviceTwo" value="Service Two starts...."/>
</log>
</inSequence>
问题是,第二个代理服务没有收到此消息。 有谁知道如何解决它?
答案 0 :(得分:0)
嗨,你为什么要发送序列,它应该在顺序中。