Creating RSS feeds

How do you create RSS feeds? I am building a school site that
would like to use RSS feeds.
Thanks!
-Dan

Not sure what you mean exactly.
1) Do you want to create and publish RSS feeds which people
can subscribe
to?
Or 2) do you want to have RSS news feeds appear on your web
site?
If 1)
How to Create an RSS Feed with Notepad, a Web Server and a
Beer - the beer
is optional :-)
http://www.downes.ca/cgi-bin/page.cgi?post=56
RSS Specifications - everything you need to know about RSS:
http://www.rss-specifications.com/display-rss.htm
FeedForAll - feed generating software for win/mac:
http://www.feedforall.com/
If 2)
Feed Roll - javascript generator for including news feeds in
websites:
http://www.feedroll.com/rssviewer/
Google Ajax feedfetcher - requires you to have a Google API
key#
http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
Nancy O.
Alt-Web Design & Publishing
www.alt-web.com

Similar Messages

  • Create RSS feed from HTML DB?

    I've been using a streaming RSS feed extension in Firefox for several months now and get feeds from all over including asktom.oracle.com and http://www.oracle.com/technology/products/database/htmldb/index.html. Very cool.
    Recently I've installed HTML DB and have begun creating some basic reports - nothing very dramatic as I'm just learning. Now I'd like to begin sending out RSS feeds from my HTML DB application to my RSS extension in my Firefox browser but can't find an easy way to do it.
    I see several posts of others wishing to do the opposite (read RSS feeds into their HTML DB application) but nothing that shows how to create a feed from HTML DB.
    I looked at Tom's description of his method at http://asktom.oracle.com/~sdillon/rss.html but this seems very cumbersome to me - is there an easier way?
    I would think that there should be a "create RSS" feed button somewhere in the HTML DB interface when I'm defining the page's attributes.
    Thanks in advance for any advice/suggestions.

    Actually, Tom's method is not as hard as it looks.
    You can really just copy it all into your own procedure and replace the inner query.

  • Create rss feed in iview

    hi experts,
    how can we create rss feed in iView.
    Thanks And Regards
    Trilochan

    Hi,
    Check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/0c/1c4af4da4043bbaf0effd45b93f6d8/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/94/4f7f04f22646b59310904b910e733c/frameset.htm
    A Look at XML iViews in SAP Enterprise Portal 6.0 SP Stack 04
    Implementing A RSS Feed Reader In The Portal
    Easy XML/XSLT transform using apis provided by SAP
    Regards,
    Praveen Gudapati

  • Create RSS feeds from KM News

    Hi all,
    is it possible to create RSS feeds from the standard News items created with Form Based Publishing (XML Forms builders)? In other words, instead if just displaying those news items in the portal, can they be displayed in an RSS reader as well?
    Since it's all XML I would say it is possible, right?
    please advice
    Marcel

    Hi Marcel,
    jRSS - Simple Java RSS Feed Generator
    A simple java API to produce Really Simple Syndication (RSS) documents following the specification version 2.0
    http://sourceforge.net/projects/jrss/
    http://cephas.net/blog/2003/09/07/creating-rss-using-java/
    So generate the RSS in the KM folder where your XMLForm datas are saved.
    After that create a component that accesses this RSS and shows it. You can use RSS Viewer librarys to achieve this:
    http://sourceforge.net/projects/rssview/
    So steps are:
    1. Create RSS and save as resource in KM.
    <b>Create a Repository Service, which creates this RSS and also updates it when contents in the folder changes.</b>
    2. Read this resource using a component and create IView from this component.
    I am sure that there are lots of other approches to implement this solution.
    Greetings,
    Praveen Gudapati
    [Points are always welcome for helpful answers]

  • Create RSS feed for Narrow casting

    We are using narrow casting and we can stream content to it using an RSS-feed.
    We want to do the following: - Create an rss feed of an exchange (mailbox or calendar) using a script. I think it is just like this link. Or as shown below: 
    ###Code from http://poshcode.org/?show=669
    # Creates an RSS feed
    # Parameter input is for "site": Path, Title, Url, Description
    # Pipeline input is for feed items: hashtable with Title, Link, Author, Description, and pubDate keys
    Function New-RssFeed
    param (
    $Path = "$( throw 'Path is a mandatory parameter.' )",
    $Title = "Site Title",
    $Url = "http://$( $env:computername )",
    $Description = "Description of site"
    Begin {
    # feed metadata
    $encoding = [System.Text.Encoding]::UTF8
    $writer = New-Object System.Xml.XmlTextWriter( $Path, $encoding )
    $writer.WriteStartDocument()
    $writer.WriteStartElement( "rss" )
    $writer.WriteAttributeString( "version", "2.0" )
    $writer.WriteStartElement( "channel" )
    $writer.WriteElementString( "title", $Title )
    $writer.WriteElementString( "link", $Url )
    $writer.WriteElementString( "description", $Description )
    Process {
    # Construct feed items
    $writer.WriteStartElement( "item" )
    $writer.WriteElementString( "title", $_.title )
    $writer.WriteElementString( "link", $_.link )
    $writer.WriteElementString( "author", $_.author )
    $writer.WriteStartElement( "description" )
    $writer.WriteRaw( "<![CDATA[" ) # desc can contain HTML, so its escaped using SGML escape code
    $writer.WriteRaw( $_.description )
    $writer.WriteRaw( "]]>" )
    $writer.WriteEndElement()
    $writer.WriteElementString( "pubDate", $_.pubDate.toString( 'r' ) )
    $writer.WriteElementString( "guid", $homePageUrl + "/" + [guid]::NewGuid() )
    $writer.WriteEndElement()
    End {
    $writer.WriteEndElement()
    $writer.WriteEndElement()
    $writer.WriteEndDocument()
    $writer.Close()
    ### end code from http://poshcode.org/?show=669
    ## Get the Mailbox to Access from the 1st commandline argument
    $MailboxName = $args[0]
    ## Load Managed API dll
    Add-Type -Path "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"
    ## Set Exchange Version
    $ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP1
    ## Create Exchange Service Object
    $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService($ExchangeVersion)
    ## Set Credentials to use two options are availible Option1 to use explict credentials or Option 2 use the Default (logged On) credentials
    #Credentials Option 1 using UPN for the windows Account
    $psCred = Get-Credential
    $creds = New-Object System.Net.NetworkCredential($psCred.UserName.ToString(),$psCred.GetNetworkCredential().password.ToString())
    $service.Credentials = $creds
    #Credentials Option 2
    #service.UseDefaultCredentials = $true
    ## Choose to ignore any SSL Warning issues caused by Self Signed Certificates
    ## Code From http://poshcode.org/624
    ## Create a compilation environment
    $Provider=New-Object Microsoft.CSharp.CSharpCodeProvider
    $Compiler=$Provider.CreateCompiler()
    $Params=New-Object System.CodeDom.Compiler.CompilerParameters
    $Params.GenerateExecutable=$False
    $Params.GenerateInMemory=$True
    $Params.IncludeDebugInformation=$False
    $Params.ReferencedAssemblies.Add("System.DLL") | Out-Null
    $TASource=@'
    namespace Local.ToolkitExtensions.Net.CertificatePolicy{
    public class TrustAll : System.Net.ICertificatePolicy {
    public TrustAll() {
    public bool CheckValidationResult(System.Net.ServicePoint sp,
    System.Security.Cryptography.X509Certificates.X509Certificate cert,
    System.Net.WebRequest req, int problem) {
    return true;
    $TAResults=$Provider.CompileAssemblyFromSource($Params,$TASource)
    $TAAssembly=$TAResults.CompiledAssembly
    ## We now create an instance of the TrustAll and attach it to the ServicePointManager
    $TrustAll=$TAAssembly.CreateInstance("Local.ToolkitExtensions.Net.CertificatePolicy.TrustAll")
    [System.Net.ServicePointManager]::CertificatePolicy=$TrustAll
    ## end code from http://poshcode.org/624
    ## Set the URL of the CAS (Client Access Server) to use two options are availbe to use Autodiscover to find the CAS URL or Hardcode the CAS to use
    #CAS URL Option 1 Autodiscover
    $service.AutodiscoverUrl($MailboxName,{$true})
    "Using CAS Server : " + $Service.url
    #CAS URL Option 2 Hardcoded
    #$uri=[system.URI] "https://casservername/ews/exchange.asmx"
    #$service.Url = $uri
    ## Optional section for Exchange Impersonation
    #$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
    # Bind to the Contacts Folder
    $folderid= new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox,$MailboxName)
    $Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$folderid)
    $psPropset = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
    #Define ItemView to retrive just 50 Items
    $ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(50)
    $fiItems = $service.FindItems($Inbox.Id,$ivItemView)
    [Void]$service.LoadPropertiesForItems($fiItems,$psPropset)
    $feedItems = @()
    foreach($Item in $fiItems.Items){
    "processing Item " + $Item.Subject
    $PostItem = @{}
    $PostItem.Add("Title",$Item.Subject)
    $PostItem.Add("Author",$Item.Sender.Address)
    $PostItem.Add("pubDate",$Item.DateTimeReceived)
    $PostItem.Add("link",("https://" + $service.Url.Host + "/owa/" + $Item.WebClientReadFormQueryString))
    $PostItem.Add("description",$Item.Body.Text)
    $feedItems += $PostItem
    $feedItems | New-RssFeed -path "c:\temp\Inboxfeed.xml" -title ($MailboxName + " Inbox")
    But it is a Exchange Management Shell script an we would like to execute it like a .php file.
    Can anyone help me with this please?
    I would like to thank you in advance.
    Kind regards,
    Jordi Martin Lago

    That's not a Exchange Management Shell script its just a normal powershell script that uses the EWS Managed API
    http://msdn.microsoft.com/en-us/library/dd633710(v=exchg.80).aspx . So you can run it from any workstation or server where you have powershell and the Managed API library installed.
    You will need to update the line
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"    
    To
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\2.0\Microsoft.Exchange.WebServices.dll"    
        To cater for the latest version of the Managed API.
      You can scheduled powershell scripts to run using the Task Scheduler eg
    http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler
    Cheers
    Glen

  • Create RSS feed for iTunes

    Hi! I'm a PC-user. I need to create an RSS feed for iTunes. What program do I need to use?
    Thanks,
    Charley

    RSS Feed apps at Versiontracker.com
    Did you read you other post here? -> http://discussions.apple.com/message.jspa?messageID=3063466#3063466

  • Business Catalyst Help | Create RSS feeds

    This question was posted in response to the following article: http://helpx.adobe.com/business-catalyst/partner/add-content-rss-feed.html

    Thank you for the fast reply, Mario!
    I did look at the blog details page as the help page indicated and i did have the RSS check box checked, however under the Site Settings the RSS page had no channels in it. So I had to create a new channel so I can have a link to the blog RSS. When I created the chanel and selected to populate it with BLOG POSTs it gave me that ugly 2 box fields where you move the blog posts from left box to the right box. So essentially you have to do this for the blog posts as well. Unless I'm missing something but I spent almost an hour trying to figure this out in the Admin. Whcih is a rediculous amount of time to spend on something that comes pre-built to any other system.

  • Creating RSS feeds to iTunes U for the public or other portals to use

    I looked in the documentation but was unable to see any information on setting up RSS feeds for course content.
    Is there a way to view the RSS feed address for a podcast like - http://itunes.stanford.edu/rss.html? They have addresses like - http://deimos3.apple.com/WebObjects/Core.woa/Feed/itunes.stanford.edu.1291405182 .01291405187

    davpoind wrote:
    On the off chance that posting this will get me banned from the board,
    David, to be honest, I seriously doubt this gets you banned. Or reprimanded.
    I think "the big notion" behind iTunes U is the Apple is allowing us to
    take part in the synergy that exists between iPod/iPhone and iTunes
    and apply it to our educational purposes. But I do not think that using
    iTunes (the application) is a requirement ... it is more of the reason to
    do iTunes U. It's not a "must", it's a "why" ... if you follow me.
    iTunes U is about portable and asynchronous access to content ... it's about
    brushing up on, say, a WWDC session while I'm on the "el" on my way to work.
    While I might, conceivably, be able to wrangle WWDC sessions using something
    other than iTunes, I'm never going to have the same ease-of-use experience
    that I would just using iTunes to do everything.
    davpoind wrote:
    Now, a few caveats here...that file must be publically accessible, meaning the "all" credential must have download privileges. If it does not, you will get a Forbidden restriction error.
    I suspect it'd work if "Unauthenticated" also had download access to the file.
    The good news there is that, as you point out, Apple continues to
    enforce our security policies no matter how the file is accessed (iTunes,
    NetNewsWire, etc.).
    You've found an interesting little hack ... it's something to know.

  • Create RSS feed in Dreamweaver CS6

    Is there a tutorial or other documentation describing how to add an RSS  feed to a page in Dreamweaver (CS6)?
    Thanks,
    Chick

    Let me explain, the link to the RSS shows a demonstartion of an RSS feed that originates from this forum. The reason why you did not see your post anymore is because there are (were) newer posts that replaced yours.
    This demonstration page was made using Dreamweaver and the markup can be seen when you right click the page and choose View Source or similar.
    The demo site was hand coded, but there is very little to it if you have a look at the source code.
    I also suggested an alternative if you do not know how to hand code.
    If this is not what you want, then please explain what it is that you do want.
    Gramps

  • IWeb-created RSS Feed - How to Modify keywords?

    I have a podcast with 2 episodes that have been approved by iTunes, but they are still not showing up in a Search. I keep reading about people entering keywords into their RSS feed to help .... but how do I do that? Remember I'm using iWeb. Thanks.

    Hi -- I use iWeb too and had a lot of problems trying to let it generate my rss file. Finally I downloaded the program Podcast Maker and that works just beautifully. The latest version even tracks uploads of your audio files for you. The one problem is that you need to ensure that you upload the rss file to the proper folder on your server (it's in prefs but does not default to where you might think). Good luck!

  • Anyone ever created an RSS feed in DW?

    Take a look at the scrolling ticker at
    www.londonstockexchange.com top of the homepage
    I want to create something similar to this at
    www.investix.co.uk to fit just snug under the horizontal nav menu
    bar near the top. Does this involve setting up an RSS feed? I know
    I can obtain the 15 min delayed market data from the LSE directly
    at no cost, but it's getting it integrated in my homepage that I
    need help with. Is there somewhere in Dreamweaver that assists the
    user with integrating streaming RSS feeds into a website?

    HYPER83 wrote:
    > Take a look at the scrolling ticker at
    www.londonstockexchange.com top of the
    > homepage
    >
    > I want to create something similar to this at
    www.investix.co.uk to fit just
    > snug under the horizontal nav menu bar near the top.
    Does this involve setting
    > up an RSS feed? I know I can obtain the 15 min delayed
    market data from the LSE
    > directly at no cost, but it's getting it integrated in
    my homepage that I need
    > help with. Is there somewhere in Dreamweaver that
    assists the user with
    > integrating streaming RSS feeds into a website?
    >
    I just googled for "dreamweaver create rss feed" and found:
    http://www.htmlgoodies.com/beyond/xml/article.php/3698976
    http://www.thesitewizard.com/gettingstarted/dreamweaver1.shtml
    There are many more.
    Dooza

  • How can I add the logo image for a single item in an RSS feed?

    Hello,
    I am an administrator of iTunes U at the University of Minnesota.
    Before transitioning new public site, we are trying to figure out how to put a logo image into RSS feeds.
    We use our server to makes xml codes to create RSS feeds for podcasts.
    We successfully put a logo image for a collection in a RSS feed, but putting a logo image for a single item did not work.
    Below is the part of the xml code for the logo image for a single item, which is created by our server. I deleted other parts of xml code for your convenience.
    <item>
    <title>Plagiarism</title>
    <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" />
    <enclosure url="http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3" length="8544508" type="audio/x-mp3" />
    <guid>http://mediamill.cla.umn.edu/mediamill/download.php.mp3?file=87504.mp3</guid>
    <image></image>
    </item>
    We tried both <itunes:image href="http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimmin g-contast.jpg" /> or <image>http://picture.funnycorner.net/funny-pictures/6041/dolphin-vs-cow-swimming-conta st.jpg</image>.
    Both did not work.
    Can anyone help?
    Thank you for your help in advance!!
    Seogjoo

    Haven't created too many podcasts, but in this one
    http://itunes.apple.com/us/podcast/connecticut-college-sculpture/id372414245
    or
    itpc://video.conncoll.edu/d/sculptures/index.xml
    before we included the audio files, we added the images in iTunes.
    Select the file, then go to File>Get Info, here you can add metadata, and in Artwork add an image.
    Then upload this file to your server. Works for audio files anyways.
    You don't see the image in the web podcast, but you do in iTunes after you download each item, in "Show item artwork" in lower left. Click on the image and it zooms out.

  • RSS feed subscription in a semi-automatic way (SharePoint online)

    I have a site with a lot of subsites. I want to user to be able to subscribe to RSS feed in a more automatic way.
    If possible I would add a button or link to a subsite. When the user clicks this he/she is subscribed to (my pre-defined) set of RSS feeds, at once (that will be about 50 lists and document libraries).
    Is this possible?
    Thanks, Mike

    Check out Waldek's post on the subject here http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
    (Edit: By request of the blog author the content should be linked instead of copied in its entirety)

  • Authenticated RSS feeds viewer in Sharepoint 2010

    Hi All,
    I need to create an RSS feed viewer in the sharepoint page from an external site (Service Now) in which authentication is needed. I tried adding the OOTB RSS viewer webpart and found out that in our environment they are not allowing authenticated
    RSS feeds. So there is no point of asking for changing the authentication settings also.
    Could some one let me know if there is any workaround to include the authenticated RSS feeds viewer in the sharepoint environment. Please let me know if we can achieve the same through any CEWP?
    Thanks In Advance
    Jithin

    Hi,
    According to your post, my understanding is that you want to use RSS feeds in SharePoint 2010.
    Please check as the links below:
    http://norpoint.wordpress.com/2012/05/14/the-rss-webpart-does-not-support-authenticated-feeds/
    http://pravahaminfo.blogspot.in/2011/04/implement-rss-feeds-in-sharepoint.html
    We can also try to use Content Query Web Part to achieve it.
    Creating better RSS feeds with SharePoint 2010 Content Query Web Part
    http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • RSS FEED TO SIMPLY SHOW UPDATE

    i know RSS from flash has been covered loads in this forum
    and i've googled this as well but i can't find a solution. all i
    need is a simple RSS that would show that my portfolio has been
    updated to other people without opening my site. i don't need any
    feeds of any kin on my site but simply the RSS in the title bar
    which users can subscribe to....
    is this easy? and achievable?

    Can yo please elaborate with screenshot if possible
    Check if below can help you
    http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

Maybe you are looking for

  • I can no longer use any of my external hard drives or my phone

    Hi, I have a macbook pro and everything was fine 4 days ago. Now when I plug in any external hard drives, or even my phone, they do not show up anywhere. the phone is the only thing that even shows up in the system information. It was fine 4 days ago

  • Error installing Net::SSLeay to get TLS working in napp-it

    Hi, I'm using napp-it on my Solaris 11 Express server and to get email alerts through gmail I have to install Net::SMTP::TLS. This requires two other packages, Net::SSLeay and IO::Socket::SSL. Installing Net::SSLeay failes with: How can I solve this?

  • CMT transaction does not end

    Hi! I just began trying to add transactions to my project. I use jboss and stateless session bean. All my transaction attributes were set to "supports", and all was ok. Now I try to put the transaction attribute of one method in one bean to "required

  • .Mac address keeps disappearing

    Hello, I'm using 2 mail accounts on my iphone - one is my own domain via pop, the other is a .mac address. About once every other day the .mac address account completely disappears from my phone without me having touched the settings on either my pho

  • Power brick/ charging problem 2011 MBA.

    My wife's 2011 13" MBA has suddenly stopped recognizing the charging cable when attached to the air, and so not charging at all. No recognition LED at all orange or green, nothing. I've done all the ususal stuff, switched power plugs, took off the ex