I am having some problems using the digester in that I can't get it to
call some methods for some properties.
For instance, this XML document:
<Channel toAddresses='[EMAIL PROTECTED],[EMAIL PROTECTED]' />
creates a Channel object, but does not call setToAddresses()
while this XML document
<Channel toAddress='[EMAIL PROTECTED],[EMAIL PROTECTED]' />
creates a Channel object and calls setToAddress(). Any ideas on what I
am missing? Is there some issue with plural attributes or the use of
plural methods?
- Andrew