on 06-22-2007 2:00 PM
Hello,
does any one now the way to turn KM News into RSS feeds?
I want to be able to subscribe to my KM news in portal via an RSS reader.
Regards
PS: I´ll reward the answers.
Hi Fernando,
Please check the links for help
https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/390
http://www.socialtext.net/rss-winterfest/index.cgi?great_rss_tools
Thanks N Regards
Santosh
Reward if helpful !!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello
sorry, but I think I didn´t explained my self propertly, let me rephrase all that.
What i need is not an RSS reader in Portal. What I need is a RSS reader in my local machine that reads RSS generated in Portal.
I want to generate RSS feeds from my portal with the NEWS posted in KM.
Does that make sense?
Is that possible?
any idea?
Regards
Fernando
Hi,
This is possible if you generate a RSS from the news that exist in the KM Folder.
You can use jRSS - Simple Java RSS Feed Generator, to generate RSS from news items:
http://sourceforge.net/projects/jrss/
Greetings,
Praveen Gudapati
[Points are welcome for helpful answers]
Hi,
I have no ready made code that I can share with you but the API is simple to use:
//Create RSS Document
RSS rss = new RSS(RSS.DEFAULT_VERSION);
//Create channel
Channel channel = new Channel("News", "News", "News");
//Create Item
Item item = new Item(title, description);
//Add Item to channel
channel.addItem(item);
//Add channel to Rss
rss.addChannel(channel);
String rssString = feedGenerator.generateAsString(rss);
So create per NewsResource one channel Item and add to channel.
Create a RespositoryService that creates this RSS.
Greetings,
Praveen Gudapati
Hi,
Refer this blog you will get some idea
https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3001
Regards,
Senthil K.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.