XML Parsing Error

Hi,

I am parsing an xml using SAX parser; the contains the character &, so the SAX parser is giving the exception "org.xml.sax.SAXParseException: The content of elements must consist of well-formed character data or markup". I sthere any way that i can parse the xml even it has &,< and > characters in content?

Thanks in advance

[362 byte] By [m_irfan_ma] at [2007-11-27 8:03:01]
# 1
No, that isn't XML if you don't escape those characters properly.Have you considered escaping them properly? It isn't that hard and if you did, you wouldn't have a problem.
DrClapa at 2007-7-12 19:45:05 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Refer http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JAXPSAX6.html
dvohra09a at 2007-7-12 19:45:05 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...