Thread XML::LibXML parsen (5 answers)
Opened by rantan at 2013-06-04 16:25

rantan
 2013-06-05 16:23
#168009 #168009
User since
2013-06-04
3 Artikel
BenutzerIn
[default_avatar]
Hallo,

Super! Danke, das hat mich weiter gebracht.

Hast du eventuell noch eine Idee wie ich eine URL statt einer Datei parsen kann.

Folgendes hab ich schon probiert:

Code: (dl )
1
2
my $mein_objekt = XML::LibXML->load_xml(location => "http://bla/cores?action=REPORT&wt=xml");
my $wurzel = $mein_objekt->getDocumentElement;


und

Code: (dl )
1
2
3
my $mein_objekt = XML::LibXML->new();
my $Baumobjekt = $mein_objekt->parse_file("http://bla/cores?action=REPORT&wt=xml");
my $wurzel = $Baumobjekt->getDocumentElement;


Code: (dl )
1
2
3
Beides bringt die Fehlermeldung:

Could not create file parser context for file "http://bla/cores?action=REPORT&wt=xml": Resource temporarily unavailable at inc.pm line 10.


Gruß Jürgen

modedit Editiert von GwenDragon: fehlermeldungen bitte in [CODE] stellen
Last edited: 2013-06-06 09:00:54 +0200 (CEST)

View full thread XML::LibXML parsen