Android fast rss/atom parsing
I'm looking for a fast way to parse an RSS and Atom feed (the source changes periodically). I tried different approach: Writing my own parser: I made a very fast one using SAX Problem: Most of the...
View ArticleHow to navigate / process atom entry links in Java?
I need to parse an atom document, where entry links point to other related entries. For example, an entry contains information about an electric meter, and a link points to another entry which...
View ArticleJava: Parse OData Atom Feed
How can I parse a odata atom feed? Notice: The xml data are already on my system. So I need a libary that takes a string or local file path. Example: <?xml version="1.0"...
View ArticleNeed Only New and Updated Entries from ATOM, RSS
Is there an ATOM Client or framework that enables capture of a feed entry EXACTLY once? If not, what is the best architecture? We would like to parse an ATOM feed, persisting all syndication feed...
View ArticleHow to use SAXParse to parse atom feed with java
I use the SAXParser to parse RSS feed that was prepared for iTunes podcast. It doesn't want work with these tags. If I remove all marked tags it will work. The mainly task to get info from item tags...
View Articlejavascript getElementsByTagName exclude certain tags
In my project I'm trying to parse rss & atom feeds. I target each feed's link with this: var feedLink = source.getElementsByTagName('link')[0]; Some feeds start directly with...
View ArticleCan't fetch all text when parse from google alerts
I already made an Android RSS Feed App from Google Alerts Source. After I compiled and running only showing about half article or can't fetch all text from one source but not crash. From...
View ArticleError during parsing of Atom response
I try to parse a HttpWebRequest from Yandex-Fotki (Image Hoster). I get a response in Atom-Format, but in SyndicationFeed I get an error: The element with name 'service' and namespace...
View ArticleFind a value by substring in a nested dictionary
Just to give my problem a context: I am writing a Django webapp that includes several applications. One of them is used to display articles from RSS feeds. For now, I was only displaying the link,...
View ArticleUnable to parse atom feed
I am implementing Youtube push notification and implemented webhook. Youtube gives updates in the form of atom feed. My problem is i can't parse that feed. This is the XML: <?xml version="1.0"...
View Article