RawXMLInOutMessageReceiver discards exception information
---------------------------------------------------------

                 Key: AXIS2-1261
                 URL: http://issues.apache.org/jira/browse/AXIS2-1261
             Project: Apache Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: core
    Affects Versions: 1.0
         Environment: Axis 2 1.0.0
Weblogic Server 9.2
Windows XP SP2
            Reporter: James Shiell


The code below from RawXMLInOutMessageReceiver results in valuable exception 
information being lost when throwing an AxisFault.

At the least this should be logged, although it would be nice to have 
InvocationTargetExceptions unwrapped and passed to the AxisFault.

{code}
OMElement result;
try {
    result = (OMElement) method.invoke(obj, args);
} catch (Exception e) {
    throw new AxisFault(e.getMessage());
}
{code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to