Re: SAXException when using Digester -- HELP!

2001-01-14 Thread Nathan Eric Probst
Success === Would you believe that all that trouble was caused by (erroneously) prepending a '/' to the pattern? For example... digester.addSetProperties("/composition/layer"); ...should have been this... digester.addSetProperties("composition/layer"); I guess that's what you get for r

Re: SAXException when using Digester -- HELP!

2001-01-13 Thread Nathan Eric Probst
Addendum Oh, I forgot to mention that I have verified that my XML is well-formed. As a followup question, now that I've snagged some sleep: Is there a recommended technique for debugging Digester usage? Looking at the source, it seems that much of the debug code has been commented out!

SAXException when using Digester -- HELP!

2001-01-13 Thread Nathan Eric Probst
This is my first time posting to this list, so if I'm not following protocol, or am being stupid, please forgive (and correct) me. Below is the pertinent information, I think. Thanks for your help! Nathan Probst ==