Re: [xsl] Error in XPath expression with IE

Subject: Re: [xsl] Error in XPath expression with IE
From: António Mota <amsmota@xxxxxxxxx>
Date: Thu, 17 Mar 2005 14:41:33 +0000
Well, i'm using the open-source project Sarissa, that provides a
cross-browser javascript implementation
(http://sarissa.sourceforge.net), so i think they take care of it. For
the XMLHTTPRequest they say

---
For users under IE, an XMLHTTP object is returned using the most
recent MSXML ProgID found in the client system. So, supposing that the
user has MSXML4.0 installed, the above is equal to:

var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.4.0");
---

so for a DomDocument it's probably similar.

Thanks for your remark.


On Thu, 17 Mar 2005 07:33:41 -0000, Joe Fawcett <joefawcett@xxxxxxxxxxx>
wrote:
> ----- Original Message -----
> From: "Antsnio Mota" <amsmota@xxxxxxxxx>
> To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
> Sent: Tuesday, March 15, 2005 6:08 PM
> Subject: Re: [xsl] Error in XPath expression with IE
>
> > Right, i forgot about
> >
> > xmlDoc.setProperty("SelectionLanguage", "XPath");
> >
> > That solves everithing. Oh well, i just have the chance to write a
> > piece of scrap anyhow...
> >
> You also have to make sure the version 3 parser is invoked. To be
absolutely
> certain you need to use the line:
> var xmlDoc = new ActiveXObject("msxml2.domdocument.3.0");
> rather than either this line:
> var xmlDoc = new ActiveXObject("microsoft.xmldom");
> or by using a data island.
>
> Joe

Current Thread