rss

RSS displaying correctly in Safari but not Firefox.

Hi folks! I am having a problem with our RSS feed displaying correctly in Safari but not in Firefox. A sample is shown below. The issue is in the <title> tag under <pubdate>. The shows correctly in Safari but is spelled out in Firefox. Has anyone encountered this problem? <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="t...

Filtering data - REST <RSS>

I wonder if anyone can help me filter this data in some way? Here is a link to the data: http://tinyurl.com/mykv85 I'd like to create a web page to display this data but also filter it in some way. ...

Fixing Broken RSS feed, duplicate items via "pubDate"

I am trying to subscribe to an RSS feed for a fighter's history via MixedMartialArts.com, but this particular website updates the pubDate for each of the fights, causing duplicates every time the pubDate is updated. http://www1.mixedmartialarts.com/?go=rss.fighterRecord&amp;pid=8878384A5C892D13 However, other attributes of each remain...

RSS Feed Trouble w/ Linq

Trying to read an RSS and select information using Linq but can't seem to get it working. Here is my code: XDocument feedXML = XDocument.Load( "http://eventful.com/atom/performers/bliminal-/P0-001-000192452-0"); var feeds = from feed in feedXML.Descendants("entry") select new { ...

Combining multiple RSS feeds

I've successfully used "union" as described here to join two RSS feeds in a c# project, but we have a scenario where we could have up to a hundred RSS feeds to join together. What would be the best way with that number of feeds? ...

Using ROME to search RSS feeds

I'm using ROME to read and combine RSS feeds (caching is done with EhCache) in a Java environment. Is there functionality built in to the Rome API that allows you to search the contents of a feed (or a combination of different feeds) and then combine the ones that meet a specific search criteria? I'm thinking of implementing that mysel...

How to get rss old items like google reader

I'm creating RSS reader application. I need to get any linked rss old items. For example some web rss result count is too less. My application check time range is too long. Sometimes loss some news. How can i get rss old items? When scrolling down on the google reader,reader shown previous items. ...

why does my django rss feed send all old entries again from time to time?

I've been using the django syndication-feed framework for about 9 month now and i keep having the same problem. Every now and then, for no apparent reason my rss reader (google reader) is flooded with all the old entries, which I already received when they were up to date. I failed to find a connection between these happenings, it's not ...

Rome FeedFetcher Cache

I am trying to use Rome FeedFetcher to retrieve an RSS feed only if it has been updated. However, once the cache is created, it never seems to check the feed again. So if an item is added to the feed it isn't pulled down. I turned on some logging and looked at: feedFetcherCache.getFeedInfo(url).getLastModified() for the url in ques...

Can I get the more than the last x articles from an RSS feed?

Going to http://feedproxy.google.com/ILoveTypography in my browser or curl, gets the last 15 articles, the number is set by the blog engine I'm guessing. Adding the feed to Google Reader however, I can scroll down to the bottom and it'l AJAX load the next 15 or 20 items in the list, and you can keep scrolling down and it'l forever load u...

RSS feeds in PHP

Just wondering if someone could suggest a PHP library that would allow me to read the data of an RSS feed and write it to a MySQL database. Also, if possible, provide a link to documentation about how to do this? Thanks ...

How to prevent someone from hacking API feed?

I have started developing a webpage and recently hired someone to write code to display a customized feed (powered by API) in the middle panel on http://farmball.com/. Note that this is not the RSS feed tied to the site blog. The feed ties to my account on another site. There is no RSS link for an average user to subscribe to the feed. I...

How to approach generating secure/private feeds?

What would be the best approach to generate a secure feed? Would some sort of token (feed.example.com/user_private?user=1&token=XXXXXXXXXXX) be allright or are any other more appropriate solutions? ...

DateTime.Parse for pubDate in RSS Feeds

I'm trying to pull a DateTime object from RSS feeds in C# and DateTime.Parse(string) was working fine for the BBC rss feed which has a format like: Thu, 24 Sep 2009 13:08:30 GMT But when I try and use that for Engadget's feed which has a date format like Thu, 24 Sep 2009 17:04:00 EST throws a FormatException. Is there something straigh...

SharePoint 2007 RSS Viewer - ProxyAuthenticationRequired

When using the RSS Viewer webpart in SharePoint 2007, we can hit internal RSS feeds without issue but if we point to an external RSS feed we get the following error. ProtocolError occured trying to complete the request. The server returned a status code of : ProxyAuthenticationRequired and the status description is : "Proxy Authenticati...

RSS Feed XML error- any wrong?

XML Parsing Error: no element found Location: http://localhost/rss/ Line Number 1, Column 1: However, when I paste the xml into http://validator.w3.org/feed/check.cgi , it say no formatting error. FULL CODE AT BELOW: index.php <?php header("Content-Type: application/xml; charset=ISO-8859-1"); $details = '<?xml version="1.0" en...

Add CDATA to SyndicationPerson?

I'm trying to add CDATA to a SyndicationPerson object in C#. SyndicationPerson author = new SyndicationPerson(); author.Name = string.Format("<!CDATA[{0}]]>", name); author.Email = string.Format("<!CDATA[{0}]]>", email); this.Authors.Add(author); However, this serializes incorrectly because SyndicationPerson doesn't write to Xml as ty...

Trouble parsing remote RSS feed using ColdFusion

I'm having a vexing time displaying a remote RSS feed on an intranet site. I'm using the MM_ XSLTransform.cfc version 0.6.2 to pull in the feed and a basic xsl to output. The feed url is www.fedsources.com/FedsourcesNet/RssFeeds/RSS_MarketFlash.aspx. If you open it in a browser, you'll see it appears to be an ordinary RSS feed. But when ...

Drupal - Feed Link Inside Tabbed Mini-Panels Go Wild - Thanks for SOS Help

A panel page created by two tabbed mini-panels using customized views of feedapi. http://arisey.com/template The feed link goes to the right external website in mini-panel view. However in the combined panel view, the feeds went wild and pointed to non-existing internal links, i.e arisey.com/template#ui-tabs-124. The html source cod...

Reading RSS problem - Expected DTD markup was not found

I am opening XML file that refers to a DTD as follows: <?xml version="1.0" encoding="windows-1250"?> <!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd"&gt; Here is the part of C# code: public static XmlDocument FromUri(string uri) { XmlDocument xmlDoc;...