http://www.perlmonks.org?node_id=1011783


in reply to Re: XML::Parser XML validation
in thread XML::Parser XML validation

Thanks for your quick answer. So basically, I will have to fix any error found by the script and then re-run, fix any new error and repeat the procedure until there are no more errors?

Replies are listed 'Best First'.
Re^3: XML::Parser XML validation
by CountZero (Bishop) on Jan 05, 2013 at 13:47 UTC
    Yes. All bets are off for an XML document with errors. The first error found may actually not be the first error in the document: it is just the place where the parser got stuck.

    Consider the following:

    <a> <d> <e> </e> </b> </a>
    Where is the error? Should <d> be <b> or should </b> be </d>? Or perhaps they should both be <f> ... </f> tags? How is the parser to know? To be sure the XML is not only well formed but also correct, you will have to validate the XML according to a DTD or Schema definition.

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

    My blog: Imperial Deltronics