rss

Effective way to transform a few nodes contents of feeds

Dear all I need to "proxy" a feed and leave most of the nodes unspoiled and transform the content of a few known nodes by calling some java methods and return the transformed feed Of course I prefer to avoid - loading in memory the whole feed - transform other nodes - bad performance It's a kind of java pipe ! Thanks for your re...

Best implementation for a 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 everytime somebody calls it, should I use it just to create an xml file and make my rss url point to the file? What's the best approach? Edit...

Why isn't this Yahoo Pipe outputting items?

I have a Yahoo! Pipe that attempts to transform an HTML page into RSS, but the resulting feed contains no items. For each entry I've parsed these elements: link (permalink) title (HTML title) description (HTML entry) guid (segment of the permalink) Various tutorials led me to add these: dc:creator ("Doug") y:id.value (permalink) y:...

Delicious API - All bookmarks for a given website?

Is there a way for me to get at a list of the URLs on my website which people have bookmarked on the delicious.com website? Their documentation appears to make no reference to wildcard searches or anything other than individual URLs. Any suggestions? ...

Most Important Elements inside a RSS/Atom feed

Hello, We're building an "on-demand" feed parsing service (http://superfeedr.com) that developers can plug directly into their own applications. Instead of building your own feed parsing module, and spending days in setting it up and maintaining it, we do the "hard" work for you and our service sends you updates in real-time and standar...

RSS reader in actionscript 2

I'm trying to make an actionscript program that will be able to read an RSS feed and find the title and description of the item. I'm able to load the XML into a variable, but when I try to look at the children nodes of the XML the output tells me there are none. I was able to find a very nice RSS reader explanation made in ActionScript 3...

Download the source of an Atom Rss Feed

I have a link that renders an rss feed, is there a way to have firefox display the source of this link as opposed to popping up the Add Live Bookmark dialog? ...

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? ...

Using file_get_contents or curl to url on same server

I have a PHP script that needs to process the same site's RSS feed. Specifically, I'm displaying the most recent blogs from the WordPress RSS feed on the home page. On our staging server it worked fine but on our live (which is a completely different, but LAMP) hosting environment it's not working. I can run file_get_contents or cur...

Related posts from the blogosphere - dynamic integration of Google Blogsearch RSS on wordpress category pages

OK, I'm looking for a method to put the three latest "news" from Google Blogsearch/Twitter search feeds into the bottom of category Pages. Maybe like this (assuming we're on the archive page for the "Sports" category): What others say about "Sport": Instapundit - Michael Jordan Comeback! Huffington post - Michael Jordan Comeback! Craz...

Publish feeds using Django

I'm publishing a feed from a Django application. I subclassed django.contrib.syndication.feeds.Feed, everything works fine, except the date that doesn't get published on the feed. Here's the method I've created on my Feed class def item_pubdate(self, item): return item.date this method never gets called.... ...

How Can I expose RSS Syndication Feed through WCF Web Service to JQuery client

I wanto to build a WCF service that read RSS Syndication Feed (.NET 3.5 SP1). Then I want to consume the wcf service using JQuery in a web client. Are you asking why I don't directly consume it from the client? I think that there are some cross domain security issues when the client is located in a defferent domain. Anyway, if anyone ...

Tutorial for creating a podcast (in PHP)

I am looking for some tutorials for setting up a podcast in PHP. I have audio files and title/description data, I just want to make sure I get the XML part right so that it handles well in iTunes and other common players. (I don't subscribe to any podcasts, and I don't know what's popular.) The title/description data is stored in a mysq...

RSS or XML

I need to get data from a web site written in PHP. My boss wants me to provide an RSS feed to get updated content. The problem is that I need to provide several informations (at least a dozen different field). Is returning data as XML a better way than RSS? ...

RSS 2.0 feed - set update limit for Outlook 2007

I am generating an RSS 2.0 feed using System.ServiceModel.Syndication.SyndicationFeed for Outlook 2007 SP2 clients, and I would like to know if it is possible to set the update limit for the feed in order to be recognized by Outlook client. ...

Module to produce RSS from Python

Possible Duplicate: Recommended Python RSS/Atom feed generator? The Universal Feed Parser can read feeds, but anything similar for writing different types of feeds (RSS x.x, Atom, etc)? Or do I just have to bite the bullet and hand-produce the XML? ...

PHP RSS not parsing at line 55

Hi I wonder if anyone can help with this code. I am trying to show the records from a URL table for a category, eg url_category_id = to 1. where the url and category is the same in the associating table. I am having some issues with this rss as it has a parse error on line 55. I have tried to resolve the issue but without avail. <?php ...

Sharepoint search of external RSS feeds

I want my sharepoint site to allow a user to search content in a known collection of RSS feeds. I figure conceptually a few ways to do this crawl the feeds at their source (Yikes!) Pull the full articles into my sharepoint site, then let my crawler crawl it Make use of an existing index (like google) search the full articles, on deman...

How do I read RSS feed through a proxy using RSS.NET?

Trying to use RSS.NET. Example on the site is: (C#) string url = "http://sourceforge.net/export/rss2_sfnews.php?feed"; RssFeed feed = RssFeed.Read(url); RssChannel channel = (RssChannel)feed.Channels[0]; listBox.DataSource = channel.Items; However, this fails because I need to access the feed through a proxy. How do I do this? An ove...

Feed access control

Is there a sensible setup for private feeds (rss or atom) with some sort of security and authentication? The application in question creates "private news" with sensible information for each user and the request is to present these news via feeds. Only the user may gain access and read his news and should be able to subscribe to then. ...