Return-Path: X-Original-To: apmail-axis-java-dev-archive@www.apache.org Delivered-To: apmail-axis-java-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5B619DA40 for ; Thu, 30 Aug 2012 16:08:09 +0000 (UTC) Received: (qmail 2388 invoked by uid 500); 30 Aug 2012 16:08:08 -0000 Delivered-To: apmail-axis-java-dev-archive@axis.apache.org Received: (qmail 2245 invoked by uid 500); 30 Aug 2012 16:08:07 -0000 Mailing-List: contact java-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@axis.apache.org Delivered-To: mailing list java-dev@axis.apache.org Received: (qmail 2231 invoked by uid 99); 30 Aug 2012 16:08:07 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Aug 2012 16:08:07 +0000 Date: Fri, 31 Aug 2012 03:08:07 +1100 (NCT) From: "James Grahn (JIRA)" To: java-dev@axis.apache.org Message-ID: <1707078410.16988.1346342887633.JavaMail.jiratomcat@arcas> In-Reply-To: <1318450534.37183.1329242279569.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (AXIS2-5245) Information from RuntimeExceptions escapes Axis2 error handling mechanism MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AXIS2-5245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Grahn updated AXIS2-5245: ------------------------------- Attachment: Issue5245-AxisEngine.java.patch Proposed minimally invasive fix. Failure reason will be attached to a message context even in failures resulting from a RuntimeException. > Information from RuntimeExceptions escapes Axis2 error handling mechanism > ------------------------------------------------------------------------- > > Key: AXIS2-5245 > URL: https://issues.apache.org/jira/browse/AXIS2-5245 > Project: Axis2 > Issue Type: Bug > Components: kernel > Affects Versions: 1.5.4 > Reporter: James Grahn > Labels: exception-handling > Attachments: Issue5245-AxisEngine.java.patch > > > RuntimeExceptions result in abnormal behavior from Axis2. > When an AxisFault is thrown, generally the fault is recorded in the message context, then a FaultFlow is invoked. Handlers operating in the FaultFlow context may then discover the fault through examination of the message contexts attached to its operation context. > If a runtime exception is thrown, however, the exception is lost, even though the FaultFlow is properly invoked. FaultFlow Handlers can no longer discover the exception which caused their invocation. > I recognize that best practice would include packaging every thrown exception in an AxisFault or AxisFault derivative. However, given that Axis2 does attempt to respond sensibly to RuntimeExceptions, I do not believe that having a "silent" FaultFlow invocation with no access to the originating exception is proper behavior. > The fix for this issue would involve (minimally) adding a catch clause to various methods in AxisEngine to set the failure reason on the message context when a runtime exception is intercepted, then rethrowing the original exception. Fault handlers would then be able to recover information from the originating exception. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org For additional commands, e-mail: java-dev-help@axis.apache.org