rss

Rss and external feed

I want to build a similar app like this:http://community.livejournal.com/ohnotheydidnt/32551171.html using a livejournal rss feed. Any way of retrieving an external feed ( meaning getting a feed from a different domain that the one your web application-Same origin policy)? I've built a parser, but I would like to use dashcode for simple ...

Online storage: Google Spreadsheet v.s. GAE Bigtable

As an online storage, two of them can be a choice, with officially supported API. Both of them have its advantage and weakness. Google SpreadSheet supports RSS feed, but has limited no. of rows. GAE Bigtable is more scalable, but harder to be remotely accessed by external party. Any other comparison? and what's your favorite? ...

Aggregating RSS Items in Java

I'm trying to build a polling service in Java that checks for updates from a RSS feed. On detecting new items, it should only send new items further on in the system. Is there an API that does this or would I have to do the comparison checks myself? At the moment, my poller just returns what it currently sees causing duplicates in my ...

Checking for Old RSS Items?

I'm writing my own RSS app in Csharp, and I'm wondering what would be a good method for seeing previously fetched RSS items (so it only fetches the new ones)? Currently, my app just refetches all the RSS Items and transfers them to Email one by one (individual emails for each Item). Do an MD5 hash of the title and compare it to all the ...

System.ServiceModel.Syndication authentication

How can I use authentication with System.ServiceModel.Syndication to read a private RSS? The code I use right now just returns forbidden. I have tried adding &PASS=password and &PASSWORD=password to the URL but it doesnt help. try { using (XmlReader reader = XmlReader.Create("http://trac:8080/Project/report/7?format=rs...

DotNetNuke: News Feeds (RSS) module seems to *require* hard coded authentication?

We've got a DotNetNuke 5 based website that uses the ActiveForum module to allow for a forum to exist. I'd like to show an RSS feed from the forum on another page. So I find the link to the ActiveForum RSS feed, add a News Feeds (RSS) module to the page and then add a feed to the RSS. This then gives me an error saying it can't load th...

RSS feed stats in Django?

I have a Django site segmented into different city and neighborhood sub-sections. I want to serve an RSS feed for each. Easy. Problem is I wanted to use Feedburner for stats, monetization etc but each feed would need to be split out manually into its own feedburner URL. There are hundreds of cities and neighborhoods. I have to roll my ow...

How do I read RSS from Google App Engine? Getting JDOM could not create a SAX parser

I am trying to write a simple Google App Engine website that reads an external RSS feed. I am using ROME with JDOM, however I am getting the impression that ROME is not compatible with Google App Engine and how you may fetch data. ROME uses the build method of the SyndFeedInput class, but I cannot find any way to how to connect this wit...

PHP XML manager/Xquery creator?

Hi, i'm looking for a PHP solution to easily traverse (readonly) XML files (rss feeds) from websites. Other providers have XML feeds with different markups and I want to have an easy PHP (possible self-built) manager to just enter an URI and then immediately be able to 'select' nodes/attributes/nodegroups to create somesort of definitio...

Finding the URL for podcast feeds from an iTunes id. (iTMS API)

I'm look at a way of turning an iTunes podcast id into the RSS feed that the podcast producer serves. I'm aware of the RSS generator, which can be used to generate a feed of links to podcasts, but these links are to HTML pages. If you have iTunes open, you can manually export the list of podcasts by exporting to OPML, so we can surmis...

Model inheritance, the Factory pattern, and self-parsing in Ruby-on-Rails

Hi all- I am working with a site that will be pulling down feeds from a lot of different sources, and then saving those streams into a common model, in this case a trait. An example of the code from within the FeedEntry class might be: feed = Feedzirra::Feed.fetch_and_parse(feed_url) add_entries(feed.entries) ... def self.add_entrie...

how to secure feed in asp.net mvc??

how to secure rss feed in asp.net mvc?? ...

How would I go about getting the title, date, and url of the last ten blog posts from multiple sites?

I need to read multiple rss feeds from different blogs and get just the title, date, and url for the last 10 posts of each site, and then format those lists however I like. I'm working on creating a buzz type website. Somewhat like affbuzz.com. Please let me know the easiest and cleanest way of doing this, either in php, or jquery etc....

[Wordpress] Change RSS feed

Hi all, I want to display my images into the rss feed. I have the job already done. But i want to create a seperate tag for it. Now the image is included into the HERE THE IMAGE AND CONTENT How to create this seperated? Like: here the image HERE THE CONTENT Some ideas? ...

How to automatically parse an RSS feed for storage in MySQL database?

I need to somehow automatically update/parse a couple of RSS feeds and place them into a MySQL database almost as soon as the feed is updated, or as close as possible. However, I can't work out the best way to do this automatically - I've found tutorials for doing it when a user runs a script - but in this case it all needs to be done in...

Making rss title/link link to description?

Is it possible to do this? Ie. instead of the link directing to the original story, instead displaying the description. How could I do this? Am new to alot of this, so any help is much appreciated. Thank you! ...

Question about rss in iPhone Web App.

OK, so I'm currently having a play around building an iPhone Web App, in which it displays an RSS feed. I have got it displaying nicely and looking good, but everytime a user clicks on the title of a story, they then get taken to the main site, which I don't want as it's not mobile optimised. The rss feed is a full rss feed, so the who...

Feedparser newbie questions

Hi all, After a break from Python(and I knew very little then!) I'm coming back to it for a project(hopefully!). I want to do some parsing using Feedparser & need a few hints to start. Before anyone shouts, I have searched Google and read the docs, but I'm a bit too rusty unfortunately!(So please don't lmgtfy me!) If I have a rss fee...

YouTube API sometimes returns no description

i'm writing a web app to find videos on YT and sometimes a found video seems to have no description : it's value in the XML is (seems?) to be empty - I use SimplePie to read the search feed, but i guess this could be any .. eg http://www.youtube.com/watch?v=GONzQlePpBg title: A Day To Remember - You Had Me At Hello .. it's just an exampl...

RSS speed vs. AJAX speed

I am attempting to pull posts from my Wordpress (on the same server as my main site) to my main site. I am able to use both RSS and Ajax - but I need to choose between them. What are the performance pro's and con's of either, and what should my final decision be? ...