Subject: RE: remote XML with document()
From: Jonathan Yue <jonathan@xxxxxxxxxxx>
Date: Thu, 18 Apr 2002 17:51:57 -0700
|
Yes, It is possible with saxon.
<xsl:variable
name="XMLFile">http://serverip:port/xml/Clubs.xml</xsl:variable>
<xsl:for-each select="document($XMLFile)/Clubs/Club">
...
Regards
Jonathan
-----Original Message-----
From: Dan Cederholm [mailto:dan@xxxxxxxxxxxx]
Sent: Thursday, April 18, 2002 2:00 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: remote XML with document()
Hi,
I was trying to reference a remote XML file via the document()
function like this:
<xsl:value-of
select="document('http://www.domain.com/file.xml')/test/text"/>
Sablotron doesn't seem to like it. I'm wondering if anyone knows
if this is possible with other processors, or if there's another
way to access XML on a different server?
Thanks,
Dan
dan@xxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|