XSL STYLESHEET DOCTYPE
Hi all,
I am again posting it.
I wrote a xsl for transforming server-generated xml to xml.And the DTD for both the xml's r same.Earlier I kept the dtd file and all the xml under one home dir.Then it worked.But now I archived and created sub-directories and made server-generated xmls to fall under this sub-dir according to some category.Now it says it cannot find the DTD.
So,that means I need to reference the Dtd in stylesheet.But when I do,
it does'nt refer it.
I am refeering in stylesheet as
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" doctype-system="C:/Test/phone.dtd" />
And in the Server Generated xml,the doctype is
<!DOCTYPE phone SYSTEM "phone.dtd">
which I cannot change it becos its coming from the server
Whatever I do,it says it cannot find the DTD.
I THINK I have to do modifications in stylesheet only.
Can anybody pls help me.I am trying it from long time.Any help appreciated. Please help me out.

