Subject: | Not sure if this is a bug |
Date: | Wed, 25 Jul 2012 20:20:46 -0700 |
To: | bug-XML-RSS-Tools [...] rt.cpan.org |
From: | Ken Ingram <ken.ingram [...] gmail.com> |
#!/usr/bin/perl -w
use strict;
use diagnostics;
use XML::RSS::Tools;
## Instantiate objects ##
my $rss_object = XML::RSS::Tools->new;
$rss_object->rss_uri('http:://recordings.talkshoe.com/rss41875.xml');
$rss_object->rss_file('./rss41875.xml');
print $rss_object->get_version;
$rss_object->get_xml_catalog;
print $rss_object->get_version returns "0.91"
But I get nothing else.
I can't tell if the xml is being retrieved or if the file is being read.
Any tips?