philgyford has asked for the wisdom of the Perl Monks concerning the following question:
That generates "Not Found", although the feed at http://test.org.uk/feed/ does exist.#!/usr/bin/perl -w use strict; use XML::Feed; my $feed = XML::Feed->parse(URI->new( 'http://test.org.uk/feed/' )) or print XML::Feed->errstr . "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::Feed saying a feed is "Not Found" when it exists
by psini (Deacon) on Sep 22, 2008 at 17:42 UTC | |
by philgyford (Novice) on Sep 22, 2008 at 21:37 UTC |