Skip Menu |

This queue is for tickets about the XML-Mini CPAN distribution.

Report information
The Basics
Id: 4914
Status: new
Priority: 0/
Queue: XML-Mini

People
Owner: Nobody in particular
Requestors: nheidbrink [...] gmx.de
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: XML-Files must not have external DTD
'fromFile' and 'parse' do not read in XML-Documents that refer to an external DTD. <?xml version="1.0" standalone="no"?> <!DOCTYPE element SYSTEM "myxml.dtd"> <element> ... any valid XML ... </element> Without the doctype declaration the methods work as expected. As soon as the doctype declaration is included, 'toString' yields nothing but '<?xml standalone="no" version="1.0"?>'
[guest - Mon Jan 12 02:28:12 2004]: I first noticed this problem on a system running perl 5.8.1. The 'DOCTYPE' declaration works fine on another system running perl 5.6.1. Both systems have the same version of XML::Mini installed from CPAN (i.e. XML::Mini 1.2.8) Show quoted text
> 'fromFile' and 'parse' do not read in XML-Documents that refer to an > external DTD. > > <?xml version="1.0" standalone="no"?> > <!DOCTYPE element SYSTEM "myxml.dtd"> > <element> > ... any valid XML ... > </element> > > Without the doctype declaration the methods work as expected. > As soon as the doctype declaration is included, 'toString' yields > nothing but > '<?xml standalone="no" version="1.0"?>'