Hi, everyone.

In order to get the Echo project to build in Eclipse without a compile error, I had to remove two jars:

xml-apis.jar
xmlParserAPIs.jar

Prior to removing them, Eclipse (JDK 1.5.0.06) showed a compile error:

"The method getTextContent() is undefined for the type Element"

Googling around, it appears that getContext() is only available at or above jdk1.5, so my guess is that the two jars above are old...or perhaps there is something more subtle going on here?

Ben