--- jakarta-tomcat-catalina/webapps/docs/appdev/sample/src/mypackage/Hello.java.orig 2004-11-24 11:55:36.000000000 -0500
+++ jakarta-tomcat-catalina/webapps/docs/appdev/sample/src/mypackage/Hello.java 2007-04-27 14:29:32.000000000 -0400
@@ -68,24 +68,11 @@
writer.println("
");
writer.println("Sample Application Servlet");
writer.println("This is the output of a servlet that is part of");
- writer.println("the Hello, World application. It displays the");
- writer.println("request headers from the request we are currently");
- writer.println("processing.");
+ writer.println("the Hello, World application.");
writer.println(" | ");
writer.println("");
writer.println("");
- writer.println("");
- Enumeration names = request.getHeaderNames();
- while (names.hasMoreElements()) {
- String name = (String) names.nextElement();
- writer.println("");
- writer.println(" | " + name + ": | ");
- writer.println(" " + request.getHeader(name) + " | ");
- writer.println("
");
- }
- writer.println("
");
-
writer.println("