6 Einträge, 1 Seite |
QuoteSteht z. B. in XML::Simple.The XML standard is very clear on the issue of non-compliant documents. An error in parsing any single element (for example a missing end tag) must cause the whole document to be rejected.
QuoteDa musst du wohl selbst was schreiben. Sowas wie NoXML::Parser
QuoteKannst du denn die Leute nicht auf ihre nichtstandard-xml-konformen RSS hinweisen?
QuoteBei XML::LibXML gibt es tatsächlich eine Option, um einige XML-Fehlerarten zu ignorieren.
1
2
3
4
5
6
7
8
$parser = XML::DOM::Parser->new();
eval {$ResponseDoc = $parser->parse ($feedcontent);};
if($@){
xyz
}
#... hier dann die Verarbeitung wenn es soweit kommt
6 Einträge, 1 Seite |