I should mention that I'm using the Transformator in order to write the DOM document to a file, but it seems to skip the DTD section when writing the new updated XML file.
Why is it happening and how can I keep the DTD??
Have you added the following to your XSLT?...
<xsl:output
method="xml"
indent="yes"
doctype-public="-//W3C//DTD XHTML 1.1//EN"
doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />Add your own doctype info there and it will show up in the resulting document.
Jake
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
