Java Servlet Programming by Jason Hunter with William Crawford Following are the changes made in the 7/00 reprint. Here's the key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification <27> A footnote was added to the end of the first paragraph under "Server-Side Includes". It reads: "Note that support for SSI has been disapproved since this book originally went to press, so you may not want to spend much time on this material." {43} The URL is in the footnote used to read: "http://java.sun.com/bean/" It now reads: "http://java.sun.com/beans/" [52] In the first sentence of the paragraph under the first block used to read: "using the servlet class" It now reads: "using the servlet instance". (71) In the fifth sentence under the second full bullet: The word "last" was changed to "previous" (81) The first sentence of the last paragraph used to read: "How does this involves servlets?" It now reads: "How does this involve servlets?" (189) The phrase: "Netscape Navigator 3 and 4 on Unix and Microsoft Internet Explorer 4 on" was removed from the bottom of page 188. [231] In the middle of Example 8-5, the following chuck of code: // Try redirecting the client to the page he first tried to access try { String target = (String) session.getValue("login.target"); if (target != null) res.sendRedirect(target); return; Was changed to: if (target != null) { res.sendRedirect(target); return; } <275> A short footnote was added to the last sentence before Example 9-9. The text of the footnote reads: "Note that the quality of binary stream support in database systems and JDBC drivers can vary widely. JDBC 2.0 drivers include improved handling of BLOB type objects, but implementation is still inconsistent." (465) The second heading on this page was changed from: "getLastAccessTime()" to "getLastAccessedTime()"