How to parse an HTTP file with Xerces-Perl

F

Francesco Moi

Hi.

I'm trying to parse a HTTP file
http://www.foo.com/foo.xml
by using Xerces-Perl:

------------------------------------------
use XML::Xerces;

my $file = XML::Xerces::LocalFileInputSource->new("http://www.foo.com/foo.xml");
my $parser = XML::Xerces::XercesDOMParser->new();
eval { $parser->parse($file); };
error($@,"Couldn't parse file: $ARGV[0]") if $@;
my $doc = $parser->getDocument();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,234
Latest member
SkyeWeems

Latest Threads

Top