我试图用WSO2 ESB实现一个简单的消息流,但不是很熟悉这个主题:
“消费者客户端与服务提供商进行通信以获取随机整数。”理想情况下,我希望将随机数发送回客户端,但也发送给其他服务。
有人可以检查一下这个实现是否正确吗?非常感谢
<proxy name="ClientAskNumber" transports="https http" startOnLoad="true" trace="disable"> <target faultSequence="fault"> <endpoint> <address uri="http://localhost:8280/services/RandomNumbers"/> </endpoint> <inSequence> <log/> <send/> </inSequence> <outSequence> <log/> <send/> </outSequence> </target> </proxy>
答案 0 :(得分:3)
更正了配置..