Wiley.com
Print this page Share

Professional Apache Tomcat 5

ISBN: 978-0-7645-5902-0
Paperback
624 pages
May 2004
Professional Apache Tomcat 5 (0764559028) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
Admin Web Application No Longer Budndled w/ Tomcat 5.5
The admin web application is not bundled along with Tomcat 5.5 anymore to enhance out-of-box security. Instead, users can download the admin application separately as jakarta-tomcat-VERSION-admin.zip/tar.gz.

Tomcat 5.0 continues to bundle the admin application as of date.
3/22/05
3 39 Errors in Text
In the first paragraph of the "Assigning Port Numbers" section (top of page), there are a few incorrect port assignments. The corrections are below:

POP3 uses port 110, not 25

AND

SMTP uses port 25, not 110

AND

The protocol for port 21 is SSH, not SSL.
05/30/2006
5 61 Nesting example beneath second paragraph
The nesting for the default configuration of Tomcat is incorrect.
It should be:
Server
-Service
--Connector
--Connector
--Engine
---Logger
---Realm
---Host
----Logger
11/23/04
62 First sentence under "The Server Component"
service.xml should read server.xml
under 'The Server Component' First sentence
2/28/05
124 Error in Code
Under the welcome-file-list section, the source code reads:

<welcome-file-list>
<welcome-file>index.jsp<welcome-file>
<welcome-file>index.html<welcome-file>
<welcome-file>home.html<welcome-file>
</welcome-file-list>

However, it should read:

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>home.html</welcome-file>
</welcome-file-list>
06/05/2006
184 Change in Path
In the "Adding a Resource Definition to the Application Context Descriptor" section, the path in parenthesis should be:

$CATALINA_HOME/conf/Catalina/localhost/jsp-examples.xml

instead of the current:

$CATALINA_HOME/Catalina/localhost/jsp-examples.xml
2/28/05
307 Unit wrong for parameter removeAbandonedTimeout
In server.xml, the unit of time in the parameter removeAbandonedTimeout is shown in minutes, it should be seconds.
1/25/05
308 Error in Step 2
Step 2 (<resource-ref> entry in web.xml)not needed IF:
the JNDI resource is set as global.
Having the resource defined in the <DefaultContext> means that the <resource-ref> is not necessary in the web.xml file.
10/03/06
15 350 "CREATE TABLE user_roles" does not create dual primary
Code should read:
create table user_roles (
user_name varchar(15) not null,
role_name varchar(15) not null,
primary key (user_name, role_name)
);
11/23/04
13 Chapter 13 Error of Connector
Tomcat's JK2 Connector was deprecated after the book was released. The latest versions of Tomcat recommend using the JK connector. This Connector will be covered in detail in the next edition of this book ("Professional Apache Tomcat 6").
08/14/06

Related Titles

More By These Authors

Java

by Mike Robinson, Ellen Finkelstein
by Rod Johnson, Jürgen Höller, Alef Arendsen, Thomas Risberg, Colin Sampaleanu
by W. Clay Richardson, Donald Avondolio, Joe Vitale, Scot Schrager, Mark W. Mitchell, Jeff Scanlon
by Eric Pugh, Joseph D. Gradecki
by Ed Roman, Rima Patel Sriganesh, Gerald Brose
Back to Top