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

Similar Messages

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

  • What program to use to create an RSS feed for iTues.  PC-user.

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

    Today, Sep. 24, 2006, there is on the Webpage a link
    (http://www.feedforall.com/download.htm) (Shareware)
    to the FeedForAll v2.0 BETA2 with iTunes Support.
    Read on the website:
    "FeedForAll BETA- robust RSS feed creation software with namespace support includind support for iTunes and other namespaces."

  • I am unable to submit my RSS feed into iTunes

    Podcast RSS feed not being accepted by iTunes
    I have registered my main podcast RSS feed in iTunes successfully. I want to migrate this RSS feed from feedburner to PowerPress, but I want to prototype it first before I move the real feed. To that end, I created another Blogger blog site and Feedburner rss feed that has the same settings as my main feed. The feed is using SmartCast to configure the RSS feed for iTunes compatibility. I cannot get the test feed to load into iTunes though. I get this error message:
    Podcast cover art must be at least 1400x1400 pixel JPG or PNG, in RGB color space, and hosted on a server that allows HTTP head requests.
    I had the artist give me a 1400x1400 pixel version of the logo in RGB color space (I’m not sure how to verify this).  Here is a link to the logo, if anyone can tell by looking at the picture or site what is wrong that needs to be fixed. http://s24.postimg.org/lvuuf7v91/ARP_logo_i_Tunes.jpg
    I have read as many forum posts as I can to try and solve this issue and nothing has worked so far. Can someone tell me what is wrong with my image or RSS feed that is causing iTunes to reject the feed?
    Here is the RSS feed:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?>
    <?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?>
    <rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <atom:id>tag:blogger.com,1999:blog-2141959670783740217</atom:id>
    <lastBuildDate>Wed, 18 Feb 2015 06:39:04 +0000</lastBuildDate>
    <title>jwaitdev</title>
    <description />
    <link>http://jwaitdev.blogspot.com/</link>
    <managingEditor>[email protected] (John W)</managingEditor>
    <generator>Blogger</generator>
    <openSearch:totalResults>1</openSearch:totalResults>
    <openSearch:startIndex>1</openSearch:startIndex>
    <openSearch:itemsPerPage>25</openSearch:itemsPerPage>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Jwaitdev" />
    <feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="jwaitdev" />
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
    <media:thumbnail url="http://s24.postimg.org/lvuuf7v91/ARP_logo_i_Tunes.jpg" />
    <media:keywords>comic,books,comics,marvel,dc,batman,superman,x,men,avengers,won der,woman,arcs,iron,man,captain,america,hulk,green,lantern,arrow,justice,league, aquaman,thor,cyclops,storm,wolverine,spiderman</media:keywords>
    <media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Games &amp; Hobbies/Hobbies</media:category>
    <itunes:owner>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:explicit>no</itunes:explicit>
    <itunes:image href="http://s24.postimg.org/lvuuf7v91/ARP_logo_i_Tunes.jpg" />
    <itunes:keywords>comic,books,comics,marvel,dc,batman,superman,x,men,avengers,wo nder,woman,arcs,iron,man,captain,america,hulk,green,lantern,arrow,justice,league ,aquaman,thor,cyclops,storm,wolverine,spiderman</itunes:keywords>
    <itunes:subtitle>Jwait Dev</itunes:subtitle>
    <itunes:summary>My development blog for testing migration</itunes:summary>
    <itunes:category text="Games &amp; Hobbies">
    <itunes:category text="Hobbies" />
    </itunes:category>
    <image>
    <link>http://jwaitdev.blogspot.com</link>
    <url>https://feedburner.google.com/fb/images/pub/fb_pwrd.gif</url>
    <title>http://s27.postimg.org/fnxhw7lhb/ARP_logo_RSS.jpg</title>
    </image>
    <item>
    <guid isPermaLink="false">tag:blogger.com,1999:blog-2141959670783740217.post-38349488 96057833951</guid>
    <pubDate>Wed, 18 Feb 2015 06:39:00 +0000</pubDate>
    <atom:updated>2015-02-17T22:39:04.500-08:00</atom:updated>
    <title>ARP - 32 - Teen Titans: Judas Contract</title>
    <description>Dev blog for practicing migration.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-Miu_JPJPmiA/VOQzZPvEy0I/AAAAAAAAAGw/dg_kz3v_N8A/s1600/ teen%2Btitan%2Bcopy.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-Miu_JPJPmiA/VOQzZPvEy0I/AAAAAAAAAGw/dg_kz3v_N8A/s1600/ teen%2Btitan%2Bcopy.jpg" height="194" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
    &lt;a href="http://feeds.feedburner.com/~ff/Jwaitdev?a=sYEG3TSBXJw:tD9aLoP_o-A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Jwaitdev?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Jwaitdev?a=sYEG3TSBXJw:tD9aLoP_o-A:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Jwaitdev?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Jwaitdev?a=sYEG3TSBXJw:tD9aLoP_o-A:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Jwaitdev?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
    &lt;/div&gt;</description>
    <enclosure type="audio/mpeg" url="http://archive.org/download/ARP32JudasContract/ARP-32-JudasContract.mp3" length="0" />
    <link>http://jwaitdev.blogspot.com/2015/02/arp-32-teen-titans-judas-contract.html</link>
    <author>[email protected]</author>
    <media:thumbnail url="http://1.bp.blogspot.com/-Miu_JPJPmiA/VOQzZPvEy0I/AAAAAAAAAGw/dg_kz3v_N8A/s72-c/ teen%2Btitan%2Bcopy.jpg" height="72" width="72" />
    <thr:total>0</thr:total>
    <media:content url="http://archive.org/download/ARP32JudasContract/ARP-32-JudasContract.mp3" type="audio/mpeg" />
    <itunes:explicit>no</itunes:explicit>
    <itunes:subtitle>Dev blog for practicing migration.</itunes:subtitle>
    <itunes:author>[email protected]</itunes:author>
    <itunes:summary>Dev blog for practicing migration.</itunes:summary>
    <itunes:keywords>comic,books,comics,marvel,dc,batman,superman,x,men,avengers,wo nder,woman,arcs,iron,man,captain,america,hulk,green,lantern,arrow,justice,league ,aquaman,thor,cyclops,storm,wolverine,spiderman</itunes:keywords>
    </item>
    <language>en-us</language>
    <media:rating>nonadult</media:rating>
    <media:description type="plain">Jwait Dev</media:description>
    </channel>
    </rss>

    I was shown on another forum that the web hosting site had resized the image. When I uploaded the image to Image Shack, it was fine. Image Shack does not resize the image on you.

  • How to create an rss feed for a database application page

    Hi
    I need to create a web service for an apex application page so that it can be utilized and hosted another server of apex. For that we thought of creating an rss feed for that application page.
    Please help me out how to create an rss feed for an apex page.
    Thanks in advance.
    Regards
    Sandeep Artham

    Hi,
    This might help
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21674/advnc_web_services.htm#sthref2628
    Also Blog posts
    http://tylermuth.wordpress.com/2008/01/22/producing-rss-from-plsql/
    http://richmurnane.blogspot.com/2010/03/oracle-apex-creating-simple-rss-feed.html
    http://www.apex-blog.nl/node/8
    Regards,
    Jari

  • HT1819 I have two existing podcasts on iTunes. I have new RSS feeds for both. Can I change the RSS feeds on my existing podcast listings or do I have to resubmit?

    I have two existing podcasts on iTunes. I have new RSS feeds for both. Can I change the RSS feeds on my existing podcast listings or do I have to resubmit?

    There is some info in this discussion.
    https://discussions.apple.com/thread/6024120?tstart=0

  • When i try submitting my RSS feed for a podcast itunes says we are experiencing technical difficulties...... why is this and when will it be fixed?

    when i try submitting my RSS feed for a podcast itunes says we are experiencing technical difficulties...... why is this and when will it be fixed?

    Well, I can't see any problem with the feed, and the episode media file is correctly referenced and plays. Incidentally you do have a 'copyright' tag - it says 'Wippenberg'.
    When a podcast feed is rejected, corrected and resubmitted there is a minor bug in the Store which causes you to be told that the podcast has already been submitted (which is true but irrelevant - it's really meant to prevent duplicates). To get round this you need to make a small change to the title - for example you could add a hyphen and space before 'Podcast'. You can always change it back once it's been accepted.
    The other issue might be the content. The reason given for rejection tends to be technical issues, whatever the actual reason is. I haven't listened to your podcast, so I can't comment directly. Possible reasons for rejection are unacceptable content, sexual content or strong language when the 'explicit' tag is not said to 'yes', and copyright infringement: a lot of people fall over this one by including 'mixes' or indeed full plays of commercially issued recordings without having written permission from the copyright owners or alternatively a valid Podcast Licence (not available in all countries, possibly only the USA). I have no idea whether this might be an issue with yours.

  • 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

  • RSS feeds for Error Queues

    We have a requirement to send RSS feeds when ever there is a error message placed in the error queeu. Any inputs on this will be very much useful.

    > Hi,  The RSS feeds for the forums are great.  Any
    > chance of having the same thing for the developer
    > areas?  I'd hate to miss any new materials....
    Hi Kenneth,
    RSS feeds for home pages are on the unfortunately long list of improvements. It is high up there.
    But if you don't want to miss any materials, then you should check out DevToday, which you find under Services.
    https://www.sdn.sap.com/sdn/devnews.sdn?node=linkn2
    It shows only the new stuff that came in within the last I think it is 30 days. You can tailor it to your information interests by rating these objects. You can even create a daily or weekly email from it.
    Gone is the fear of missing good information, Mark.
    P.S. If now only that DevToday page had an RSS feed
    P.P.S. Of course it only works if you are logged in, which by the way everyone using SDN should be.

  • I'd like a search keyword-based RSS Feed for iOS apps. Possible?

    It's great that Apple offers a variety of RSS feeds for the iTunes store. I'd like to be able to further hone the feed to particular search-based keywords. For example, limit the top paid apps to just those about dogs or some other long-tail (I did NOT mean that as a pun :-) ) keyword term. Is this possible?
    Alternatively, if one could convert Apple JSON-based searches into an RSS feed, that would do the trick, too. An example JSON feed:
    http://itunes.apple.com/search?term=dog&entity=iPadSoftware&limit=200

    If you want more, then see these (if you're not coming from windoze, skip the switching stuff):
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Anatomy of a Mac,
    MacTips, and
    Switching to the Mac: The Missing Manual, Snow Leopard Edition.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • 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 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]

  • RSS Feeds for developer area...

    Hi,  The RSS feeds for the forums are great.  Any chance of having the same thing for the developer areas?  I'd hate to miss any new materials....
    Thanks!

    > Hi,  The RSS feeds for the forums are great.  Any
    > chance of having the same thing for the developer
    > areas?  I'd hate to miss any new materials....
    Hi Kenneth,
    RSS feeds for home pages are on the unfortunately long list of improvements. It is high up there.
    But if you don't want to miss any materials, then you should check out DevToday, which you find under Services.
    https://www.sdn.sap.com/sdn/devnews.sdn?node=linkn2
    It shows only the new stuff that came in within the last I think it is 30 days. You can tailor it to your information interests by rating these objects. You can even create a daily or weekly email from it.
    Gone is the fear of missing good information, Mark.
    P.S. If now only that DevToday page had an RSS feed
    P.P.S. Of course it only works if you are logged in, which by the way everyone using SDN should be.

  • Rss Feeds for Apple news

    Hey, how can I get a Rss Feeds for all the Apple news, not only for the forum discussions?

    http://www.apple.com/rss/

Maybe you are looking for