-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I feel a bit stupid asking this question, but I don't know how I can access the ID field of an entry when using ROME to parse an Atom feed.
ROME provides it's own meta level of feeds/items, i.e. SyndFeed and SyndEntry. Being an abstraction over RSS and ATOM they only contain elements both formats…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to use Project Rome to create an RSS feed, using the code from the tutorial as base. I would like to add a pubsubhubbub discovery link, but there doesn't seem to be a general way to do so.
I can use a Link object if I create an atom feed (which I don't want to limit myself to), or I can just…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to use Project Rome to create an RSS feed, using the code from the tutorial as base. I would like to add a pubsubhubbub discovery link, but there doesn't seem to be a general way to do so.
I can use a Link object if I create an atom feed (which I don't want to limit myself to), or I can just…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to loop trough Atom feed entries, and get the title attribute lets say, I found this article, I tried this snipped of code :
for (final Iterator iter = feeds.getEntries.iterator();
iter.hasNext(); )
{
element = (Element)iter.next();
key = element.getAttributeValue("href");
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Using rome I created the rssFeed xml and now I want to read that xml so that user can view and user can view rss feed in google etc.
>>> More