Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a java library or JSP Web Application that can do the following...

  1. Subscribe to an RSS feeds
  2. Manage User Email Subscriptions to certain events in the feed. (add/remove)
  3. Notify the users as the feed come in through the feed

Example: User A wants to be notified on all news related to "technology" from the Google News RSS feed to someone1@someone.com User B wants to be notified on all news related to "education" from the Google News RSS feed to someone2@someone.com User A wants to be notified on all news related to "technology->Apple" from the Google News RSS feed to someone1@someone.com And someone2@someone.com

Thanks

share|improve this question

2 Answers

You may want to check Rome and Informa libraries.

share|improve this answer

RSS utilities by Rodrigo Oliveira will make it dead easy to parse rss feeds, it wont handle subscriptions etc, you'd have to do that. http://java.sun.com/developer/technicalArticles/javaserverpages/rss%5Futilities/

share|improve this answer
Thanks for that library. I found a good set of utilities like ROME to parse RSS feeds but i have to imagine there is some application out there to handle subscriptions... – esimran Nov 4 '09 at 23:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.