Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

getting MSXML version?

Status
Not open for further replies.

GIGN

Programmer
Oct 6, 2000
1,082
NZ
I have an application which uses XSLT functionality - and it works on my test server, however the production server does not like me doing this:

xslt.stylesheet = xslDoc;


Creation of the XSLT object gives no problem.
...
var xslt = new ActiveXObject("Msxml2.XSLTemplate");
var xslDoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument");
...


Both servers are IIS4.0 - so how can I find out the MSXML version running on the server, and how do I get around this problem ?- [I need to be able to apply server-side templates]

<bb/>
 
You can try and instantiate various versions of the DOMDocument and see how far you get. The latest is DOMDocument40 for the MSXML 4.0 parser.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top