Errata

Java Enterprise in a Nutshell

Errata for Java Enterprise in a Nutshell

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 141
2nd paragraph

Text: "In our case, resources must be set up".
Possibly(?) should be: "In our case, no resources must be set up".

Note from the Author or Editor:
This should be changed as indicated by the reader.

Anonymous  Sep 27, 2008  Jan 01, 2009
Printed
Page 206
api method names

On method:
setIgnorningElementContextWhitespace

has ignoring spelled incorrectly

Anonymous   
Printed
Page 333
Second example on page

The second example is missing a parenthesis when casting the context loopuo to a
ConnectionFactory

Anonymous   
Printed
Page 515
Between 1st and 2nd paragraph

Here is what is listed in the book

...
<property name="tmp.path" value="/usr/bin:/usr/local/bin"/>
<path id ="exec.path2">
<pathelement path="${exec.path2}"/>
</path>
...

should be

...
<property name="tmp.path" value="/usr/bin:/usr/local/bin"/>
<path id ="exec.path2">
<pathelement path="${tmp.path}"/>
</path>
...

Anonymous