Errata

Web Services Essentials

Errata for Web Services Essentials

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 xii
Book URL

The URL for the book's web page is incorrect as printed:
http://www.oreilly.com/catalog/xmlwebservices/

NOW READS:
http://www.oreilly.com/catalog/9780596002244/

Anonymous    Dec 01, 2003
Printed
Page 32
Table 2-1, in the 'Type' column

Boolean

NOW READS:
boolean

Anonymous    Dec 01, 2005
Printed
Page 37
2nd listing

The description of the Host header is misleading. According to section 14.23 of RFC
2068, the HTTP/1.1 standard, Host referers to the (perhaps virtual) host receiving
the HTTP request, not making it.

Anonymous   
Printed
Page 37
- three cases, middle of the page, in code.

HTTP 1.0 NOW READS HTTP/1.0

Anonymous    Dec 01, 2003
Printed
Page 42
Example 2-2 - Setting up a Java XML-RPC server (continued)

After the variable 'server' is initialized as a new WebServer, the author did not
include the call to start(), and thus the example simply terminates without creating
an XML-RPC listening process on a user supplied TCP port. A simple call to
server.start() will rectify the problem.

Lines 2-4 of the code sample NOW READ:

WebServer server = new WebServer(Integer.parseInt(args[0]));

server.start();

System.out.println("Started successfully.");

Anonymous    Dec 01, 2005