Re: [xsl] problem while processing external document

Subject: Re: [xsl] problem while processing external document
From: Kevin Rodgers <kevin.rodgers@xxxxxxx>
Date: Thu, 3 Mar 2005 07:47:20 -0700
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