我使用的是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>问题是,第二个代理服务没有收到这个消息。有人知道怎么修吗?
发布于 2014-08-14 02:03:43
嗨,你为什么要发送反序列,它应该是无序的。
https://stackoverflow.com/questions/25283682
复制相似问题