Hi All
I ran across an error in the 'Consuming Web Services' code.
On page 292 four lines from the bottom:
Code:
// ---retrieve all the <Definition> nodes---
NodeList itemNodes =
doc.getElementsByTagName("Definition");
=== should be ===
NodeList definitionElements =
doc.getElementsByTagName("Definition");
It is correct in the downloaded code.
Cliff