Hi, While I am parsing a xml file which has any elements declared as EMPTY,with the apache's xerces parser,I am getting an exception thrown as below:
org.xml.sax.SAXParseException: The content of element type "titlerow" must match "EMPTY". at org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1008) at org.apache.xerces.validators.common.XMLValidator.reportRecoverableXMLError(X MLValidator.java:1283) at org.apache.xerces.validators.common.XMLValidator.callEndElement(XMLValidator .java:987) at org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XM LDocumentScanner.java:1255) at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner. java:380) at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:900) at com.itreya.services.repository.XMLRepositoryParser.parse(XMLRepositoryParser .java:43) at com.itreya.services.repository.XMLRepositoryHandler.createObjectHierarchy(XM LRepositoryHandler.java:245) at com.itreya.services.repository.XMLRepositoryHandler.createObjectHierarchy(XM LRepositoryHandler.java:232) at com.itreya.services.repository.XMLRepositoryHandler.main(XMLRepositoryHandle r.java:254) Here in my xml file I am having an element named titlerow which I declared as EMPTY. So if anyone out there knows the reason,please help me out. Thanks in advance, John