hi all,

I want to handle the exceptions throwed by the services in one common 
class, and tried to extend the AxisServlet class overwriting doGet() and
doPost() method, and catch error with code like below :

    try {
        super.doGet(request, response);
    } catch (Exception e) {
        // deal the exception
        // like :  System.out.println("---------------" + e.getMessage);
    }

but nothing happened.

I think Axis doesn't call the service in such methods, so could anybody
tell me how to do the error handling in common way ? Is there a class
I can extend ?

Any help or web resources would be greatly appreciated !

Regards,
- sukie


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

Reply via email to