RE: [xsl] RSS problems

Subject: RE: [xsl] RSS problems
From: Pieter Reint Siegers Kort <pieter.siegers@xxxxxxxxxxx>
Date: Wed, 27 Oct 2004 11:10:02 -0500
Hi Luke,

You may have a problem with the MSXML version you use on both servers:

"MSXML2.FreeThreadedDOMDocument"

says to use a MSXML nonspecific version, while

"MSXML2.FreeThreadedDOMDocument.4.0"

uses the specific version 4.0.

TIP: load this page when you want to know which versions you have installed
on each server:
http://www.topxml.com/parsers/sniffer/default.asp

HTH,
<prs/>

-----Original Message-----
From: Luke Ambrogio [mailto:luke.ambrogio@xxxxxxxxxxxx] 
Sent: Wednesday, October 27, 2004 7:44 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] RSS problems

hello guys

im doing site where the user clicks on an link and the page get the rss feed
from another website passes it through an xsl file and outputs it.

On one server it works,

On another it doesn't?


Any of you guys ever encouter it or heard about it,

Regards
Luke

the code is

Set objXML = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
objXML.async = False

objXML.setProperty "ServerHTTPRequest", True strTemp =
request.QueryString("t")
objXML.Load(strTemp)

Set objXSL = Server.CreateObject("Microsoft.XMLDOM")
objXSL.async = False
objXSL.load(Server.MapPath("bovslrss.xsl"))

strHTML = objXML.transformNode(objXSL)

response.Write(strHTML)

Current Thread