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 "Deepal Jayasinghe (JIRA)" <ji...@apache.org> on 2006/09/13 08:34:22 UTC

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

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

Deepal Jayasinghe resolved AXIS2-746.
-------------------------------------

    Resolution: Won't Fix

If that is the case , how can we fix that.

Any way when we are doing i18n we can improve all these (we have to)

> Missing error explanations in AxisServlet
> -----------------------------------------
>
>                 Key: AXIS2-746
>                 URL: http://issues.apache.org/jira/browse/AXIS2-746
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Improvement
>          Components: core
>         Environment: Win2K Pro, JDK 1.4, Tomcat 5.5
>            Reporter: Ali Sadik Kumlali
>         Assigned To: Deepal Jayasinghe
>
> 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

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org