Review Topics for Exam 1
Class Page Links
UNIX
-
Commands to start, stop and restart the Apache server.
-
httpd -d
directory_for_server_root
-
kill -TERM
process_id_of_server
-
kill -HUP
process_id_of_server
Apache
-
Apache Configuration Files
-
httpd.conf
-
JkMount
-
Listen
-
ServerName
-
ServerRoot
-
ServerAdmin
-
srm.conf
-
AddIcon
-
DirectoryIndex
-
DocumentRoot
-
ReadmeName
-
UserDir
Tomcat
-
Web Application Structure
-
Using the Tomcat manager
HTML
-
DOCTYPE and meta (know what they are and why they are needed)
-
Standard codes for a web page: HTML, HEAD, BODY, TITLE
-
Layout: BR, P
-
Anchors: A (HREF)
-
Relative and Absolute references
-
HTML forms
-
text boxes
-
hidden fields
-
submit buttons
Book
Chapter 1
-
Introduction
-
Browser - Server Communication
-
HTTP
-
Request Format
-
Response Format
-
Content Type
-
Markup Language
-
Hypertext Markup Language
-
Basic Tags for a Web Page
-
Standard Tags
-
HTML Validation
-
Layout versus Style
-
Word Wrap
-
Try It: Word Wrapped Poem
-
Line Breaks
-
Try It: Formatted Poem
-
What is the HT in HTML?
-
Anchor Tag
-
Absolute and Relative References
-
HTML Forms
-
Form Tags
-
Try It: Simple Form
-
Representing Data
-
Transmitting Data over the Web
-
Try It: Examine Query String
-
Processing Form Data
-
Web Application
-
JSP
-
Try It: First JSP
-
Initializing Form Elements
-
Try It: Initialised Form
-
Try It: Badly Initialised Form
-
Summary
-
Chapter Review
Chapter 2
-
Introduction
-
Sending Data to Another Form
-
Action Attribute
-
Relative and Absolute References
-
Retrieving the Value of a Form Element
-
Try It: Passing Data to a Second Form
-
Hidden Field Technique
-
First Attempt - Failure
-
Try It: Passing Data Back - Failure
-
Second Attempt - Hidden Fields
-
Try It: Passing Data Back - Hidden Fields
-
Sending Data to Either of Two Pages
-
Inefficient Solution: Adding Another Form
-
Try It: Passing Data - Three Pages
-
The Truth About JSPs
-
Servlet for a JSP
-
Handling a JSP
-
JSP Request Process
-
Servlet Engine Response
-
Using a Controller
-
Controller Details
-
Request and Response Objects
-
Referencing Parameters
-
Testing for the Presence of a Button
-
The Big if
-
Forwarding Control to Another JSP
-
JSP Controller
-
Including Java Code
-
Controller Code
-
Edit Page
-
Confirm Page
-
Process Page
-
Try It: JSP Controller
-
JSPs versus Servlets
-
Controller Servlet
-
JSPs
-
Servlet Controller Code
-
Servlet Location
-
Identifying the Servlet
-
Servlet Compilation
-
Servlet Access
-
Creating a Short Name for a .class File
-
Servlet Mapping
-
Order within web.xml
-
Servlet-JSP Directory Structure
-
ry It: Servlet Controller
-
Servlet Engine for a Servlet
-
Summary
-
Chapter Review