Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForm and ListForm and ListHow can I get an RSS feed from list?How can I get an RSS feed from list?
Previous
 
Next
New Post
10/5/2010 2:58 AM
 
I have a form and list module set up which is regularly updated. I checked the "Allow Syndicate" box in the modue settings to have an RSS feed, but when I click the RSS button the feed it empty. Is it possible to get a feed from this module? If so, would someone please tell me how?
Thanks in advance!
 
New Post
10/5/2010 3:28 AM
 
OK, so I made the list content searchable and then re-indexed the site in "Search Admin" and now the RSS feed is populated.

Is there a way to customize how the records show in the feed? I want the fields to be in different places than they are.
 
New Post
10/5/2010 3:57 AM
 
I don't believe it is possible to update the format of the RSS Feeds that DNN builds using the Search Indexing process, not without making a core modification

Chris Hammond
Former DNN Corp Employee, MVP, Core Team Member, Trustee
Christoc.com Software Solutions DotNetNuke Module Development, Upgrades and consulting.
dnnCHAT.com a chat room for DotNetNuke discussions
 
New Post
10/5/2010 4:11 AM
 
the order of items in the feed is determined by the order of fields in the field list. If you need a different order in the List view than in the RSS fead, you may use a custom XSL view (easy to create using the built in designer).

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
10/5/2010 7:09 AM
 
I used the following code to provide a custom rss feed for http://www.formandlist.com/Blogs.aspx

<%@ WebHandler Language="VB" Class="rss" %>

Imports System
Imports System.Web
Imports DotNetNuke.Modules.UserDefinedTable
Imports System.Xml
Imports System.Xml.Xsl
Imports System.IO


Public Class rss : Implements IHttpHandler
    
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        Dim moduleId As Integer = 391
        Dim stylesheet As String = Definition.PathOfModule & "rss.xsl"
     
        context.Response.ContentType = "text/xml"
        Dim args As New XsltArgumentList
        args.AddParam("today", "", DateTime.Now)
      
        Dim udt As New UserDefinedTableController()
        Dim xslTrans As New XslCompiledTransform
        xslTrans.Load(System.Web.Hosting.HostingEnvironment.MapPath(StyleSheet))
        Dim xmlData As XmlReader = New XmlTextReader(New StringReader(udt.GetDataSet(moduleId).GetXml()))
        xslTrans.Transform(xmlData, args, New XmlTextWriter(context.Response.Output))
                 
    End Sub
 
    Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
        Get
            Return False
        End Get
    End Property

End Class
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsForm and ListForm and ListHow can I get an RSS feed from list?How can I get an RSS feed from list?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out