如何在esb中使用代理的故障序列
我想在 EndPoint 发生故障时使用故障序列。例如,我使用 jconsole 停止 service1,并希望在调用代理服务时将消息路由到 service2。但是当我使用soapui调用代理时,它显示错误消息:系统正在尝试访问非活动服务..
<target>
<inSequence >
<send>
<endpoint name="cal" >
<address uri="http://localhost:9763/services/service1/"/>
</endpoint>
</send>
</inSequence>
<faultSequence>
<log level="custom">
<property name="text" value="An unexpected error occured for service"/>
<property name="message" expression="get-property('ERROR_MESSAGE')"/>
</log>
<send>
<endpoint>
<address uri="http://localhost:9763/services/service2/"/>
</endpoint>
</send>
</faultSequence>
请指导我!