Failures in SALoadBalanceEndpoint result in "empty" faults back to the client.
------------------------------------------------------------------------------
Key: SYNAPSE-444
URL: https://issues.apache.org/jira/browse/SYNAPSE-444
Project: Synapse
Issue Type: Bug
Components: Core
Affects Versions: 1.1, 1.2, 1.3
Reporter: Jason Walton
Priority: Minor
In failure cases in SALoadBalanceEndpoint, we call into informFailure(), which
in turn calls into "handleFault()" on the top handler of the fault stack. The
call to handleFault(), however, does not supply an exception or a fault
message, so the fault received by the client looks something like this:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header></soapenv:Header>
<soapenv:Body>
<soapenv:Fault>
<faultcode
xmlns:tns="http://www.w3.org/2003/05/soap-envelope">tns:Receiver</faultcode>
<faultstring/>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Since it took me forever to figure out where these faults were coming from, it
would be nice if we returned something a touch more descriptive. :)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]