[EMAIL PROTECTED] wrote: > > Your entity is a 'parameter entity' which is only recognized within the > DTD. Change it to a regular entity (get rid of the '%' character) and you > will make it a general entity. Then it should work.
You also need to change your parameter entity reference into a general entity reference by changing "%local;" by "&local;" > [EMAIL PROTECTED] on 03/02/2000 03:37:39 PM > ... > The main file is: > > <?xml version="1.0"?> > <!DOCTYPE testdoc [ > <!ELEMENT test(testing)> > <!ELEMENT testing (name)> > <!ELEMENT name (#PCDATA)> > <!ENTITY % local SYSTEM "testing.xml" > > ]> > <test> > %local; > </test> -- Arnaud.
