当我在http://wso2.com/library/tutorials/2013/12/lightweight-service-orchestration-for-non-blocking-backend-services-using-wso2-esb/实施方案时,我收到错误消息
"代理服务需要有序或有效的终端"。
这个演示中有什么我想念的吗?这看起来很简单。如果有所作为,我现在拥有最新的ESB软件。正如文章所说,它高于4.5。
答案 0 :(得分:0)
此示例中存在错误,代理xml定义必须位于 description 标记之外:
<proxy xmlns="http://ws.apache.org/ns/synapse" name="studentRegistrationProxy" transports="https http" startonload="true" trace="disable">
<description></description>
<target>
<insequence>
<clone>
...
</clone>
</insequence>
<outsequence>
<aggregate>
...
</aggregate>
</outsequence>
<faultsequence>
</faultsequence>
</target>
</proxy>