Package edu.jhu.tmaj.servlet

Provides the classes that allow communication between the client and server.

See:
          Description

Class Summary
CommandServlet This class handles all Requests made to the server on Apache Tomcat, and returns a Response.
CommandServletClient This class is responsible for sending all Request objects from the client to the server.
ServletUtil A class used to generate the header for an HTML document.
 

Package edu.jhu.tmaj.servlet Description

Provides the classes that allow communication between the client and server. The client sends Requests to the server, and the server sends Responses back. Apache Tomcat runs the Servlet. The client can't access the database directly for 2 reasons. First, it would be very insecure. Second, the database may run on a computer behind the firewall. The order is: Client -> Server (Tomcat) -> Database