AW: [xsl] problem while processing external document

Subject: AW: [xsl] problem while processing external document
From: "Klocker Christoph" <Christoph.Klocker@xxxxxxxxxxxxx>
Date: Thu, 3 Mar 2005 16:15:25 +0100
Thanks for the suggestion.

However I just copied two examples out of the xml, as it is quite big.
The file works fine, as I described, it's just a Xpath problem.

If I remove this
<verweis>
		<artikel>
			<zeitschrift>ARD</zeitschrift>
			<fundstelle>5505/12/2004</fundstelle>
		</artikel>
</verweis>
Out of 'Steuerindex2004-7.xml' it works fine, same es with the first
<eintrag><eintrag> I stated.

Don't know, what influence the part above takes on the Xpath expression, or if
it is a bug in saxon, probably not.

/Christoph



-----Urspr|ngliche Nachricht-----
Von: Kevin Rodgers [mailto:kevin.rodgers@xxxxxxx]
Gesendet: Donnerstag, 3. Mdrz 2005 15:47
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Betreff: Re: [xsl] problem while processing external document

Klocker Christoph writes:
> The file 'Steuerindex2004-7.xml looks like this:
>
> <eintrag absatz="1" paragraph="20" z_litera="d" ziffer="2">
...
> </eintrag>
> <eintrag absatz="2" paragraph="2">
...
> </eintrag>

That's not a well-formed XML document, is it?  I think there must be an
XML declaration, and a unique document (i.e. top-level) element:

<?xml version="1.0"?>
<steuerindex>
<eintrag absatz="1" paragraph="20" z_litera="d" ziffer="2">
...
</eintrag>
<eintrag absatz="2" paragraph="2">
...
</eintrag>
</steuerindex>

--
Kevin Rodgers

Current Thread