Hi,
I am trying the basic XML parsing code from the adobe documentation..
I tried it with several RSS feeds I plan to use, many of large websites..
one worked, the others returned status -10, status: -10 (An end-tag was encountered without a matching start-tag.)
the thing is, these are big sites, there is no way all of their feeds a...
Hi,
I try to publish Atom feed (generated with Rome) using Java 6 SE httpserver. For correct feed discovery in FireFox I need custom headers.
This is my code:
Headers headers=e.getRequestHeaders();
ArrayList<String>list=new ArrayList<String>();
list.add("application/atom+xml");
headers.put("content-type", list);
e.sendResponseHead...
I want to use Yahoo pipes to extract part of a webpage and convert it to RSS. The problem is Pipes says the page is too long which is frustrating, because seemingly I can't do anything about it.
Is there a way to solve this problem within Pipes?
If not, the only way I can think of is finding a web service similar to Pipes which can ext...
Feedburner(http://feedburner.google.com) provides statistics about RSS feed of subscribers and reaches. This is interesting.
It is easy to understand that Feedburner can count visits (reaches) to a RSS feed. But, how does Feedburner get to know subscribers to a RSS feed.
In my understanding, each requests to RSS Feed URI is independe...
Hi,
I created RSS feed with Java Rome lib. The project is near the end. But I found some strange behavior of RSS clients.
I think it's more RSS clients problem, but i wont to make sure.
Rome holds items in List, so latest items are in the end of the list. I opened my feed I rss clients (Firefox and RSS Bandit) and I found there are in ...
I am developing an app that will monitor several thousands of feeds from across the web.
I have a simple RSS reader that will do the trick, but I am worried about bandwidth and latency issues - this must be as fast and efficient as possible.
I want an RSS reader/library that polls a feed and checks if it has updated without downloading...
im trying to parse an rss feed on localhost, and it brings back the right results, but when i try to do that from another (preproduction server) and live, it returns a list of comments made by users on the hydrapinion website which is completely unrelated, have i been spoofed? how can i debug this? its just an rss feed and a simple LINQ ...
I have an Ajax request to an XML document. The XML document is an RSS feed. Here's my onSuccess for the request:
onSuccess: function(responseTree) {
// process <item> elements
}
How do I enumerate <item> elements and retrieve the various child values?
...
I have written a simple program to generate rss feed from mysql db. but it broke because of the reason that there were several characters in the data which were special like '&' which made RSS feed go bad.
I am sure there would be some easy to use library which would take care of these things and I dont have to find replace such data( w...
I'm looking to write a Twitter application, and I need to get real time (or as close as possible) updates. The official REST API only allows 100 calls/hour or so, and if I want to get status from more that just a couple users it's going to add up pretty fast. Besides, requesting every 30 seconds seems like an overall pretty inefficient a...
Im thinking of setting up a Google App that simply displays an RSS or Atom feed. The idea is that every once in a while (a cron job or at the push of a magic button) the feed is read and copied into the apps internal data, ready to be viewed. This would be done in Python.
I found this page that seems to explain what I want to do. But th...
I want to have RSS feeds in my Django application, which should be
viewable only by a logged-in user. I want to allow users to add these
RSS feeds to all aggregators, so I would need something which would
work like this: supply the feed URL with a token, for example:
http://example.com/feed/rss&token=AeYQtFjQfjU5m so that token will...
I have a Google Alert, which I set to be delivered as an RSS feed as-it-happens
But is polling that RSS feed the only way to get RSS feed
or
is there a way to get notified from Google alert as the feed is published from Google? (say through a webservice, etc)
...
Is there any way on earth that I could pump some HTML through an RSS feed? I realize I'm bending the laws of science and all, but I'm under some tight circumstances. I have Wordpress set up so I'm posting a bit of HTML/Inline CSS in one end, and on another site, another web team is going to parse the RSS.
Is there any possible way to d...
Hi Guys,
I need an RSS Feed generator; should I use a class or should I generate the feed myself?
If I should generate it myself, where is a good place to get comprehensive specs of the standards?
If not, are there any good classes out there to do it and do it quickly and do it well?
...
I have a contact that is experiencing trouble with SAX when parsing RSS and Atom files. According to him, it's as if text coming from the Item elements is truncated at an apostrophe or sometimes an accented character. There seems to be a problem with encoding too.
I've given SAX a try and I have some truncating taking place too but have...
I use Google for my RSS Reader and I want to export a list of all my feeds as a textfile to share with friends. I find the Share function a bit limiting and with >200 feeds and some rarely updated I think that the Share feature is not sufficient. My idea is to view page source and copy the relevant portions of the page:
,{id:"feed/htt...
I am trying to read data from an RSS feed which has 25 items. When I request the RSS file through HTTP it says there are only 20 items.
function test($location)
{
$doc = new DomDocument();
$doc->load($location);
$items = $doc->getElementsByTagName('item');
return $items->length;
}
// Prints 20
echo test('http://www.red...
how to generate RSS for news sites programmatically? I dont know how to start..
...
I am Making an Iphone application which is web-service enabled. Also I have skeleton of this application.I am using rest to feed the contents of view controllers. When application is launched it is presented with Login page asking username and password. Clicking Login button sends request to server and in response xml data is fetched. Th...