Hi, I've a application that is monitoring by Wily Introscope and we I
detect that with have a lot of HTTP 500 Error. Looking in dept that
problem I realize that this code generate the error:
public static class FaultResponseCodeHandler
        extends AbstractHandler
    {

        public FaultResponseCodeHandler() {
            super();
            setPhase(Phase.TRANSPORT);
        }

       /**
        * @see 
org.codehaus.xfire.handler.Handler#invoke(org.codehaus.xfire.MessageContext)
        * @param context
        */
       public void invoke(MessageContext context)
       {
           HttpServletResponse response = XFireServletController.getResponse();
           if ( response != null )
               response.setStatus(500);
       }
    }

What is the meaning of invoke method?

Regards
Alejandro

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to