xsl-list
[Top] [All Lists]

Re: Error in XPath expression with IE

2005-03-17 07:41:33
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(_at_)hotmail(_dot_)com> wrote:
----- Original Message -----
From: "António Mota" <amsmota(_at_)gmail(_dot_)com>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--