public void doHead(HttpRequest request, HttpResponse response)
  throws ServletException, IOException
{
  PrintWriter out;
  response.setContentType("text/html");
  response.setHeader("X-My-Header", "De SampleServlet");
}
