If I load an XML file with a specified DTD such as the following:
<?xml version="1.0" standalone="no" ?>
<!DOCTYPE inEQUAL_PMT SYSTEM "inEQUAL_PMT.dtd">
<inEQUAL_PMT>
<!-- Basic Input -->
<LoanDate>2019-01-01</LoanDate>
<PmtDate>2019-02-01</PmtDate>
<IntRate>10</IntRate>
<!-- The Proceeds and Term -->
<Proceeds>10000.00</Proceed>
<Term>36</Term>
</inEQUAL_PMT>
If the extension can not find the DTD, then I understand why no validation can be done. However, it also does not check for well-formedness (e.g. non-matching closing tags), which I would expect the extension to fall back upon.
If I load an XML file with a specified DTD such as the following:
If the extension can not find the DTD, then I understand why no validation can be done. However, it also does not check for well-formedness (e.g. non-matching closing tags), which I would expect the extension to fall back upon.