Tests doctypedecl with general entity reference.The "(ampersand)generalE" occurs in the DTD.
<?xml version="1.0" encoding='UTF-8'?> <!DOCTYPE aniaml [ <!ELEMENT animal ANY> <!ENTITY generalE "leopard"> &generalE; <!ENTITY % parameterE "<!ELEMENT leopard EMPTY>"> %parameterE; ] animal> <!-- Wrong componet general entity reference occurs inside the DTD --> <!-- General entity sould be used in the document content --> <animal>&generalE</animal>
Expected result | Actual result for org.dom4j.io.aelfred.SAXDriver |
---|---|
<?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <fatalError/> <endDocument/> </ConformanceResults> | <?xml version="1.0" encoding="UTF-8"?> <ConformanceResults> <startDocument/> <resolveEntity> <systemID>file:/home/elharo/SAXTest/xmlconf/ibm/not-wf/P28/ibm28n04.xml</systemID> </resolveEntity> <fatalError/> <endDocument/> </ConformanceResults> |