This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

XDR vs DTD with MSXML3...


Hey guys,

Having a bit of trouble with using a stylesheet and an XDR with MSXML3.

My XML file looks like this:

<?xml version="1.0"?>
<DOCUMENT xmlns="x-schema:wtdocs.xdr">
	<!-- other nodes here.... -->
</DOCUMENT>

When I transform the XML using an XSLT stylesheet from within ASP using
MSXML3 DOM, no patterns seem to get matched and I get no output...  Example
of the ASP is:
<%
set oXML=Server.CreateObject("MSXML2.DOMDocument.3.0")
set oXSL=Server.CreateObject("MSXML2.DOMDocument.3.0")
oXML.async=false
oXSL.async=false
oXML.load("file.xml")
oXSL.load("doc.xsl")
sStr=oXML.transformNode(oXSL)
response.write sStr
%>

If I remove the reference to xmlns="x-schema..." and put a
<!DOCTYPE DOCUMENT SYSTEM "wtdocs.dtd">
in instead (the DTD is exactly equivalent), the matching seems to work and I
get my desired output...

Hope that is enough info...  Any ideas why using XDR seems to be causing me
problems??

Thanks in advance...
PH


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]