Axis2 should populate <details> for custom exceptions for POJO services
-----------------------------------------------------------------------
Key: AXIS2-3443
URL: https://issues.apache.org/jira/browse/AXIS2-3443
Project: Axis 2.0 (Axis2)
Issue Type: Improvement
Affects Versions: 1.3, 1.4, nightly
Reporter: Nadeem Hoda
Currently, if a user uses a custom exception in his POJO service, this is not
reflected in the SOAP Exception.
As with WSDL-first services in Axis2, the full fault/exception information
should be automatically put into the <details> of the SOAP Exception.
The user should not be forced to use AxisFault as the purpose of POJO services
is to not introduce extra or SOAP stack-specific code.
Note the following example.
At the server-side, of the following exception is thrown:
throw new CustomException("My Error.");
The following SOAP Exception (SOAP 1.1) is thrown:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>My Error.</faultstring>
<detail/>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Instead, it should automatically be as follows (at least):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>My Error.</faultstring>
<detail>
<ns1:CustomException xmlns:ns1="http://package"/>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
This will allow the client to identify the thrown fault, otherwise, there is no
way of knowing the original wsdl:fault.
--
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]