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

  Template outty = null;
  try {

    Client client = new Client();
    client.setFirstname( "Henry" );
    client.setLastname( "Ford" );
    client.setPhone( "345-2345" );

    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;
}
