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]

Re: MSXML3 -> WAS: XML Processor for Win 2000


[Joshua Miller]

> I think I should have been more clear.
> A) I'm not using ASP - I'm running ColdFusion with the following code:
> function selectSingleNode(source,style,xlink){
> var objXML=CreateObject("COM", "Microsoft.XMLDOM", "INPROC");
> var objXSL=CreateObject("COM", "Microsoft.XMLDOM", "INPROC");

There you go - you are using the API for the old msxml processor.  For the
new one, you want to use

MSXML2.DOMDocument

instead of

Microsoft.XMLDOM

There are other changes in the API, and you should look on the MS site

http://www.msdn.microsoft.com/library

or some reference book to find them.

Tom P




 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]