You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Ali Sadik Kumlali (JIRA)" <ji...@apache.org> on 2006/05/17 10:28:06 UTC

[jira] Commented: (AXIS2-746) Missing error explanations in AxisServlet

    [ http://issues.apache.org/jira/browse/AXIS2-746?page=comments#action_12412112 ] 

Ali Sadik Kumlali commented on AXIS2-746:
-----------------------------------------

Oops! e.getMessage() doesn't work. FYI.



> Missing error explanations in AxisServlet
> -----------------------------------------
>
>          Key: AXIS2-746
>          URL: http://issues.apache.org/jira/browse/AXIS2-746
>      Project: Apache Axis 2.0 (Axis2)
>         Type: Improvement

>   Components: core
>  Environment: Win2K Pro, JDK 1.4, Tomcat 5.5
>     Reporter: Ali Sadik Kumlali

>
> catch block found in doPost method doesn't print the actual error but prints "org.apache.axis2.AxisFault".
>  
> In 405768 revision
> --------------------------
>         } catch (AxisFault e) {
>             log.debug(e);
>             if (msgContext != null) {
>                 try {
>                     res.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
>                     handleFault(msgContext, out, e);
>                 } catch (AxisFault e2) {
>                     log.info(e2);
>                 }
>             } else {
>                 throw new ServletException(e);
>             }
>         }
> Should be
> ---------------
>         } catch (AxisFault e) {
>             log.debug("bla bla", e); // or  log.debug(e.getMessage());
>             if (msgContext != null) {
>                 try {
>                     res.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
>                     handleFault(msgContext, out, e);
>                 } catch (AxisFault e2) {
>                     log.info("bla bla2",e2); // or log.info(e.getMessage());
>                 }
>             } else {
>                 throw new ServletException(e);
>             }
>         }

-- 
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