当 WSO2 API 管理器上的服务失败时,错误消息的模式定义是什么。例如,服务处于阻塞状态,调用此服务时,WSO2 会使用正确的 SOAP-Fault 消息进行回复。am:fault 元素的模式 (xsd) 定义是什么?
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://foobar.nl/foobar">
<soapenv:Header/>
<soapenv:Body>
<am:fault xmlns:am="http://wso2.org/apimanager">
<am:code>700700</am:code>
<am:message>API blocked</am:message>
<am:description>This API has been blocked temporarily. Please try again later or contact the system administrators.</am:description>
</am:fault>
</soapenv:Body>
</soapenv:Envelope>