vote up 1 vote down star

I'm working on an application that allows users to add their own RSS feeds to a simple reader of sorts. Currently, I'm using xml_domit_rss as the parser but I'm unsure if it's actually validating the URL before parsing. From what I can gather online, it looks as if validating is separate from the parse, either by using a service (feedvalidator.org) or some other method (parse_url()).

Anyone have some insight into either how XML_domit_rss validates, or a method by which I can validate before sending the URL to the parser?

Thanks in advance...

flag

50% accept rate

3 Answers

vote up 1 vote down

You could validate the RSS with a RelaxNG schema. Schemas for all the different feed formats should be available online...

link|flag
vote up 0 vote down

Validating in the context of XML files (and hence RSS/Atom feeds which use XML to encode the values) means to use a document schema which describes the expected structure of the XML file (which elements can have what child elements, what attributes can be present, etc).

Now some XML parsers require a schema and bork (this is a technical term :-) - refuse to parse) on XML files not conforming to the schema. Now seeing how you are parsing arbitrary RSS, probably it is the best to skip validating and make the best effort of parsing the RSS feed. Also, you could show the parse results to the user (similar to how Google Reader does it when you add a new feed) and let her judge if the result looks ok.

Unfortunately the XML parser used by this code seems to be unfortunately dead and I can't find any detail how strict or lax it is in its parsing...

link|flag
vote up 0 vote down

It's simple, You can do that using SyndicationFeed. It supports Atom 1.0 and RSS 2.0 versions.

try 
{
    SyndicationFeed fetchedItems = SyndicationFeed.Load(XmlReader.Create(feedUrl));
    // Validation successful.
} 
catch { // Validation failed. };
link|flag
Sounds nice; is that ported to PHP? (having a similar problem, no .net possible on machine) – Piskvor May 21 at 8:21
I don't think so :) You can try to validate it through some web service like feedkiller.com or similar, to do some web request or so.. – Lukas Šalkauskas May 21 at 10:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.