1   package testData;
2   
3   import org.apache.axis.AxisFault;
4   import org.apache.axis.MessageContext;
5   import org.apache.axis.handlers.BasicHandler;
6   
7   /***
8    * @author srinath
9    *
10   * To change the template for this generated type comment go to
11   * Window>Preferences>Java>Code Generation>Code and Comments
12   */
13  public class DummyHandler extends BasicHandler{
14      public void invoke(MessageContext arg0) throws AxisFault {
15         System.out.println("Hi Am a dummy Handler .. ");
16      }
17  }