Hi,
 
  I have a requirement where I want to see the complete Handler Chain from a particular handler in a invocation. Right now there is no method exits in the handler interface that gives back the name of the handler.
 
  I am especially confused about the before and after handlers. How a before and after handlers works with respect to a Handler. For an example, suppose I have written a new Handler called NewHandler and initialize this handler with the following code
 
      public NewHandler(){
       super();
       this.after(ReadHeadersHandler.class.getName());
       this.after(DOMInHandler.class.getName());
     }
 
In this scenario how my NewHandler is being positioned in the Handler Chain?
 
regards
Abanindra

Reply via email to