Tagged Questions

Really Simple Syndication (RSS) is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format.

learn more… | top users | synonyms (1)

66
votes
8answers
13k views

RSS Feeds in ASP.NET MVC

How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely ...
55
votes
14answers
60k views

Parse RSS with jQuery

I am looking for a jQuery solution to parse RSS feeds. I want something reusable and easy... Know of a plugin? Or a way to do this with jQuery base?
44
votes
14answers
37k views

Simple RSS parser for Android

I am trying to create my first Android application and I'm not all that experienced with Java development. In short, the application needs to do the following: On click, fetch a RSS feed online ...
37
votes
5answers
9k views

Recommended Python RSS/Atom feed generator?

Can you recommend a feed generator library for Python? I could build the XML myself, but I'm looking for a recommended library that is built from the ground up around the RSS (or Atom) spec.
28
votes
13answers
4k views

Why Are People Still Creating RSS Feeds?

...instead of using the Atom syndication format? Atom is a well-defined, general-purpose XML syndication format. RSS is fractured into four different versions. All the major feed readers have ...
26
votes
7answers
17k views

Best way to parse RSS/Atom feeds with PHP

I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are there any other options for parsing RSS and Atom feeds with PHP?
22
votes
2answers
5k views

How do I make an RSS/Atom feed in Rails 3?

I'm pretty new to Rails 3, and I'm trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look like? Thanks!
21
votes
9answers
16k views

C# RSS Reader

I have been wanting to make a RSS reader for a while now (just for fun), but I don't have the slightest idea of where to start. I don't understand anything about RSS. Are there any good tutorials on ...
21
votes
3answers
2k views

How does Google Reader get every item in an RSS feed?

Slashdot's RSS feed is http://rss.slashdot.org/Slashdot/slashdot. If I download the XML file directly, I only get a few of the posts from today. However, if I subscribe to the feed in Google Reader, ...
18
votes
4answers
4k views

What is the correct MIME type to use for an RSS feed?

Is one MIME type preferable to ensure compatibility with RSS readers and other scrapers? The options seem to be: text/xml text/rss+xml Interestingly Stackoverflow is using text/html.
16
votes
5answers
2k views

What is the best PHP lib/class to generate RSS/Atom [closed]

I have to produce RSS/Atom feed in various applications, and I want to know a good lib/class wich is able to produce both, and which already handle all common problems. For example the one I used for ...
16
votes
4answers
5k views

Java RSS library

I'm looking for a Java library for generating RSS feeds, any recommendations? Cheers, Don
15
votes
7answers
1k views

The Best News Feeds for Web Developers, RSS

To all of you great web applications developers. Please, share where do you grab the latest news on this subject: cool blogs, articles, podcasts etc. related to web-based applications development. ...
15
votes
4answers
14k views

How do I parse and convert DateTime’s to the RFC 822 date-time format?

How do I convert a DateTime structure to its equivalent RFC 822 date-time formatted string representation and parse this string representation back to a DateTime structure? The RFC-822 date-time ...
14
votes
8answers
709 views

policy for polling rss

I have an application that polls several rss sources on the web. What is the etiquette when polling other's web servers. How frequently to poll, etc? What are the best practices?
14
votes
10answers
3k views

Sending SVN commits to an RSS feed

So my favourite web tool, Subtlety, was recently discontinued, which means that I no longer have easy access to the commit logs of various SVN projects that I follow. Are there any other tools that ...
13
votes
2answers
3k views

How Do I Fetch All Old Items on an RSS Feed?

I've been experimenting with writing my own RSS reader. I can handle the "parse XML" bit. The thing I'm getting stuck on is "How do I fetch older posts?" Most RSS feeds only list the 10-25 most ...
12
votes
2answers
219 views

Where can I find a stylesheet for RSS feeds?

I want to style my RSS feeds, I want to use stylesheets like FeedBurner. However, I do not like FeedBurner's style. Where can I find more stylesheets to use? I googled "RSS stylesheet", "xsl rss ...
12
votes
10answers
1k views

ASP.Net RSS feed

How do I create an rss feed in ASP.Net? Is there anything built in to support it? If not, what third-party tools are available? I'm thinking webforms, not MVC, though I suppose since this isn't a ...
11
votes
6answers
4k views

RSS feed parser library in Python

I am looking for a good library in python that will help me parse RSS feeds. Has anyone used feedparser? Any feedback?
11
votes
5answers
1k views

RSS or ATOM?

Building a feed service, I am on the fence with which I should use. The purest in me want to push and promote ATOM, but RSS is widely adopted. Maybe the simple answer is I offer both. If I go with ...
11
votes
3answers
599 views

Providing Rss and Atom feeds? Do we need both or has RSS won?

I want to provide some RSS feed(s) for my site. Is it worth providing Atom feeds? or is atom the more common feed? Is there a winner? BTW, this relates to programming because I'm required to program ...
11
votes
6answers
10k views

Parsing Atom & RSS in Ruby/Rails?

I'm looking for something that will let me parse Atom and RSS in Ruby and Rails. I've looked at the standard RSS library, but is there one library that will auto-detect whatever type of feed it is and ...
11
votes
5answers
5k views

Problems Reading RSS with C# and .net 3.5

I have been attempting to write some routines to read RSS and ATOM feeds using the new routines available in System.ServiceModel.Syndication, but unfortunately the Rss20FeedFormatter bombs out on ...
11
votes
3answers
600 views

RSS or ATOM to syndicate content?

Which is best? I always produce ATOM feeds, as they seem more comprehensive, but I'm not sure which is technically better.
11
votes
5answers
3k views

What is the best .Net library to handle feeds (Atom+RSS)

We use RSS.Net (old and not maintained, but there's a more recent fork) to parse RSS feeds. We wrote a similar library to parse Atom feeds and managed to extract a common interface from both, this way ...
10
votes
2answers
185 views

Multiple authors in RSS or Atoms

As far as I can see both Atom 1.0 and Rss 2.0 don't support multiple authors. What I want is just to double check with you guys whether there is a more or less standard way for including multiple ...
10
votes
5answers
6k views

Reading non-standard elements in a SyndicationItem with SyndicationFeed

With .net 3.5, there is a SyndicationFeed that will load in a RSS feed and allow you to run LINQ on it. Here is an example of the RSS that I am loading: <rss version="2.0" ...
9
votes
2answers
900 views

TFS checkin RSS feed

How can I to generate an RSS feed of Team Foundation Server commit messages? In Visual Studio's Source Control Explorer, the "View History" option produces a nice GUI view. Likewise, the command ...
9
votes
2answers
1k views

What Feed Reader libraries for Java are best?

What Java library would you say is the best for consuming and parsing feeds? Requirements: Embeddable Supports Atom & RSS Has caching architecture Should be able to deal with any feed format the ...
9
votes
7answers
2k views

How To Discover RSS Feeds for a given URL

I get a URL from a user. I need to know: a) is the URL a valid RSS feed? b) if not is there a valid feed associated with that URL using PHP/Javascript or something similar (Ex. http://techcrunch.com ...
9
votes
4answers
2k views

SelectNodes not working on stackoverflow feed

I'm trying to add support for stackoverflow feeds in my rss reader but SelectNodes and SelectSingleNode have no effect. This is probably something to do with ATOM and xml namespaces that I just don't ...
8
votes
2answers
214 views

How to identify iOS Universal apps from apple RSS feed

I'm working on an iOS app review website and have taken a look at the tools Apple provides, such as iTunes RSS feeds and API. However, I do not know how to distinguish an iOS Universal app from the ...
8
votes
1answer
445 views

Securing Elmah RSS Feeds in ASP.NET website

I followed the answer to this question http://stackoverflow.com/questions/1245364/securing-elmah-in-asp-net-website to restrict access to the elmah handler. However, it seems that adding an RSS feed ...
8
votes
4answers
478 views

Best way to consume an RSS feed

I'm currently working on an ASP.NET Website where I want to retrieve data from an RSS feed. I can easily retrieve the data I want and get it to show in i.e. a Repeater control. My problem is, that ...
8
votes
3answers
2k views

What is the difference between <pubDate> and <lastBuildDate> in RSS?

I have the feeling, in every RSS.xml file, both the pubDate and the lastBuildDate match. I am sure that this one, is not always true... So firstly, what is the difference between those two above? ...
8
votes
4answers
4k views

Google Chrome rendering XML as text for RSS feed

I have this script to generate an XML file for an RSS feed. Works great in every browser except Chrome. Chrome just renders the XML as text. Something to do with header("Content-Type: ...
7
votes
5answers
588 views

Good C#.NET Solution to manage frequent database polling

I am currently working on a c# .NET desktop application that will be communicating to a database over the internet via WCF and WCF Data Services. There will be many spots in the application that may ...
7
votes
3answers
336 views

What's the best library for parsing RSS/Atom in Perl?

I notice that XML::RSS::Parser hasn't been updated since 2005. Is this still the recommended library for parsing RSS or Atomtom? Is there a better one or a better way?
7
votes
5answers
2k views

Writing an RSS reader in Java

I'm trying to write a basic RSS reader for a class project. Our book shows an example by walking the DOM tree. Is that a decent approach for an RSS reader? Would I just ignore certain tags that are ...
7
votes
5answers
4k views

java library for reading RSS and ATOM feeds

I am looking for libraries which can read RSS / ATOM feeds in my J2EE application (based on JBoss Seam). Is Rome the only application there for reading feeds? I am assuming the Seam RSS integration ...
7
votes
3answers
599 views

How to play audio podcast file from libsyn rss feed? (drupal)

Got an established libsyn rss feed, got a new drupal website for the podcast. Libsyn provides a player but not correct aesthetic. I can upload and play mp3 files with audio module and mp3player ...
7
votes
2answers
3k views

Parse RSS pubDate to Date object in java

How can I parse a pubDate from a RSS feed to a Date object in java. The format in the RSS feed: Sat, 24 Apr 2010 14:01:00 GMT What I have at the moment: DateFormat dateFormat = ...
7
votes
3answers
1k views

Best implementation for an RSS feed in C# (ASP.net)

The thing I have a web app (asp.net) which needs to have a feed. So I used the System.ServiceModel.Syndication namespace to create the function that creates the 'news'. The thing is it executes ...
7
votes
3answers
1k views

Django-way of specifying channel image in rss feed

What is the "django-way" of specifying channel image in rss feed? I can do it manually by rolling my own xml, but was looking for a proper way of doing it. Edit dobrych's solution is not quite ...
7
votes
4answers
2k views

Creating RSS feed from database, how many items to put into feed so that they are all likely to be consumed?

I'm creating several RSS feeds from a database to publish things like job openings, volunteer opportunities, and links in general. My question is, how many items should be returned in the feed so ...
6
votes
1answer
77 views

rss read iphone/ipad app

I have an error while reading XML files for my iPhone app. I have a new feature on my iPhone app that reads my RSS feed. Everything looks good by but I have this issue: Error while loading rss. ...
6
votes
5answers
7k views

Is there a decent alternative to Yahoo Pipes

Pipes is being very buggy lately and has stopped saving new pipes these days. Google Mashup Editor and Microsoft Popfly are both discontinued. Are there are any currently running web apps(or atleast ...
6
votes
2answers
595 views

What happens after a packet is captured?

I've been reading about what happens after packets are captured by NICs, and the more I read, the more I'm confused. Firstly, I've read that traditionally, after a packet is captured by the NIC, it ...
6
votes
2answers
1k views

How to auto log into gmail atom feed with Python?

Gmail has this sweet thing going on to get an atom feed: def gmail_url(user, pwd): return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom" Now when you do this in a ...

1 2 3 4 5 51