I escaped the offending characters in the XML file"<" --> "<"">" -->
">""&" --> "&""\"" --> """"'" --> "'"This approach was
a bit tricky since the ampersand is both a character to be escaped when
it is by itself, or a character NOT to be escaped when it is part of the
escape sequence. Our data was extremely "open" and we couldn't discount
the possibility that these escape sequences alread existed prior to us
attempting to replace other unescaped characters.Hindsight being 20/20,
it might have be...