I added a little newsgroup browser to my SharePoint site with about a one page RSSBus SharePoint WebPart template. It works by importing the RSSBus NntpOps Connector. It calls its nntpListArticles operation to list the articles of a particular newsgroup and displays them in a table. Then when an article is clicked on, it calls the nntpGetArticle operation to retrieve the actual article – don’t worry – it will only retrieve the first 1000 lines of the article – if the thread is larger than that it will provide a link to view the message in Google Groups intead so that your SharePoint page doesn’t end up with a huge newsgroup article on it! Here is the WebPart template itself – just copy and paste it into your own RSSBus SharePoint WebPart (with the NntpOps connector installed) and it will work right away. This template browses the microsoft.public.sharepoint.windowsservices group, but you can set your own news server, group, etc.
If you want to make the news server and group editable via the “Modified Shared WebPart” property settings instead of having it hard coded, thats easy to do too. Just kill the rsb:set lines where they are hard-coded in the tempate, and at the top of the empty add the following:
this tells the WebPart to create 3 inputs – Server, Group, and Range. The NntpOps Connector will be able to see those and work with them.