<  public Template handleRequest( HttpServletRequest request,
HttpServletResponse response, Context ctx )
  {

    Template outty = null;

    try {
      Hashtable client = new Hashtable();
      client.put( "firstname", "Harry" );
      client.put( "lastname", "Potter" );
      client.put( "phone", "479-0875" );

      ctx.put( "client", client );

      outty = getTemplate("velocityproperties.vm");
    }
    catch( ParseErrorException pee ) {
      System.out.println("SampleServlet : parse error for
template " + pee);
    }
    catch( ResourceNotFoundException rnfe ) {
      System.out.println("SampleServlet : template not
found " + rnfe);
    }
    catch( Exception e ) {
      System.out.println("Error " + e);
    }

    return outty;
}
