I have RSS feeds available from an external URI: http://finance.yahoo.com/rss/headline?s=goog
How can I read the data of RSS feeds within my GWT application and
render it in a widget? Please help.
Joster
Any other solutions from anyone else?
Joster
The advantage of using the Google Feed API is that you don't need a
server proxy to read feed data to overcome the browser cross domain
restriction. You can have you GWT client code directly call the Google
Feed API to return the feed results (in xml or json formats) and
hence have a serverless feed reader like the one I built.
Google Feed API : http://code.google.com/apis/ajaxfeeds/
Sanjiv
Sanjiv
On Jul 13, 3:22 pm, Sanjiv Jivan <sanjiv.ji...@gmail.com> wrote:
> I'm using the Google Feed API along with 5 lines of JSNI. You can take
> a look at the sample feed viewer I wrote using GWT here :
>
> http://gwt-ext.googlecode.com/svn/trunk/site/samples/FeedViewer/www/c...
Joster
On Jul 13, 12:27 pm, Sanjiv Jivan <sanjiv.ji...@gmail.com> wrote:
> I forgot to mention that another advantage of using the Google Feed
> API is that it provides a consistent API for a variety of feeds
> (various versions of RSS and Atom) with the feed data in a normalized
> format so that you dont have to worry about the different feed types /
> versions. Seehttp://code.google.com/apis/ajaxfeeds/documentation/#SupportedFormats