Assignment 6
Due: Thursday, November 3, 2005
Grading(Maximum Score 100):
Points will be taken off for not meeting all requirements. 5 points will be taken off for each class or method that does not have documentation! Documentation is defined as a written description of what the method or class does. This can be as short as a couple words or as long as a paragraph. Documentation MUST be in JavaDoc Format!
Overview:
This assignment introduces you to Java Servelts by implementing a simple form processing servlet.
Detail:
In this assignment you will create a Servlet that records Guest information of visitors to your web page. The page will request information from the current visitor via an HTML form, and display information about the last 10 guests in a table below the form. Keep in mind how objects are used in Servlets. Make sure that no matter how many people are accessing the site at the same time the list remains consistent.(Thread Safe)
Restrictions:
Your solution must be written entirely in a Java. No external HTML documents should be used.
Hand In:
A print out of your code.