Okay, I'm going to post this to both this forum and the XML forum, because I'm not sure which one it really pertains to.
Anyway, I have a set of documents that use ActiveX to combine XML and XSL documents. (That way I can have only one XML document, but multiple XSL documents that feed off of it.) The problem is, that for some reason these documents will work on a single workstation just fine, but once I put them on a server (Windows NT, Microsoft Peer Web), suddenly they won't work.
The code is as follows:
var source = new ActiveXObject("Microsoft.xmldom"
source.load("commands.xml"
var style = new ActiveXObject("Microsoft.xmldom"
style.load("CommandInputBox.xsl"
document.all.item("xslContainer".innerHTML =
source.transformNode(style.documentElement);
Can anyone suggest a reason for this and how I might go about fixing the problem?
Thanks very much,
Michael D. Lundin
michael.lundin@summitsite.com
Anyway, I have a set of documents that use ActiveX to combine XML and XSL documents. (That way I can have only one XML document, but multiple XSL documents that feed off of it.) The problem is, that for some reason these documents will work on a single workstation just fine, but once I put them on a server (Windows NT, Microsoft Peer Web), suddenly they won't work.
The code is as follows:
var source = new ActiveXObject("Microsoft.xmldom"
source.load("commands.xml"
var style = new ActiveXObject("Microsoft.xmldom"
style.load("CommandInputBox.xsl"
document.all.item("xslContainer".innerHTML =
source.transformNode(style.documentElement);
Can anyone suggest a reason for this and how I might go about fixing the problem?
Thanks very much,
Michael D. Lundin
michael.lundin@summitsite.com