From: "Matthias Wessendorf" <[EMAIL PROTECTED]> > I've an XML and ne of those values contain > (X)HTML: > <text>Nice to see you!<br/>Please be sure...</text> > Now I thought the String that is read by Digester > would be "Nice to see you!<br/>Please be sure..." > NO! it doesn't contain "<br/>" > like: "Nice to see you!Please be sure..."
Based on my very limited Digester experience, I'm relatively sure that if you look at the log output, you'll see Digester "finding" that <br/> tag and, not finding any rules that say it's supposed to do something, ignoring it. I think you will have to encode the characters if you want Digester to pass them through: < as < for example. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
