in reply to Re: Re: XML::Parser and multiple results
in thread XML::Parser and multiple results

If that's the case then maybe all you need to do is wrap your file in one root node to make it valid XML. See Re: Parsing with SAX an XML Document with no Root Node for an example.
  • Comment on Re: Re: Re: XML::Parser and multiple results

Replies are listed 'Best First'.
Re: Re: Re: Re: XML::Parser and multiple results
by Ineffectual (Scribe) on Feb 19, 2004 at 18:41 UTC
    So I tried this solution, unfortunately each of the outputs contains an <?xml definition that screws up the parser because it should be at the beginning of a single file and not in the middle of a file. So I guess I'll split out each file that should be separate and do it that way. Thanks for the help. Ineff