cancel
Showing results for 
Search instead for 
Did you mean: 

KM News read via RSS

Former Member
0 Kudos

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.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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 !!!

Former Member
0 Kudos

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

praveenkumar_gudapati
Active Contributor
0 Kudos

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]

Former Member
0 Kudos

Thanks a lot for the info.

Can you please give me a fast overview on how the jRSS works?

does it take the xml files straight from the folder and populate RSS feeds from it?

Regards

Fernando

praveenkumar_gudapati
Active Contributor
0 Kudos

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

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Refer this blog you will get some idea

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3001

Regards,

Senthil K.