tags:

views:

152

answers:

1

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.

A: 

You can use the RPC feature in GWT to first send the .rss file to the server, upon which, its converted into your requirements and sent back to the client. You can use Apache Common's Digester API to extract various information from the .rss file in the Server.

Catfish