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.

Similar Messages

  • The enclosure in RSS feed doesn't work for Itune

    I subscribed to my podcast rss feed to ITune, which was valid and had been tested successfully with other aggregator such as Ipodder, however, it doesn't work for ITune. When I hit "get" button next to my podcast name, I always get "!" sign in front of the name, and when I clicked it, I got error message "There was a problem downloading 'XXXXX'. The network connection could not be made".
    I'm not sure if this problem resulted from the "rewrite" function I used on my podcasting server in order to track the downloading. Here is how it works: When a mp3 file is requested, my web server will redirect the request to another asp.net program to do something and then redirect to the real mp3 file for downloading. Can it be problem in Itune? But I can use this enclosure url to download this mp3, and also the Ipodder works file with this rss feed.
    Any help will be appreciated.
    Leo
      Windows XP  

    Thanks for your reply.
    However, according to the iTune specs as following,
    Tracking Usage
    Please note that iTunes does not provide usage statistics. Some podcasters have created mechanisms for tracking the number of times that each episode has been downloaded. iTunes does not provide support in how to track downloads, but the following notes may be helpful:
    * 302s will be followed to a depth of 5 redirects and will not update the feed URL in the directory.
    * The URL before the GET-style form values (before the first ?) must end in a media file extension (e.g. mp3). To work around this, the feed provider can alter their URL from this:
    http://www.podcaster.com/load.php?f=&Wipeout.php
    to this:
    http://www.podcaster.com/load.mp3?f=&Wipeout.mp3
    Notice how it says load.mp3 instead of load.php. It should be possible to accomplish this via various means, such as web server rewrites. iTunes looks at the extension of the path part of the url, i.e. the part before the”?”.
    The http request redirection is allowed as long as the appropriate file extension such as ".mp3" is used.
    By the way, I tested it with "no redirection" version, which worked fine.
    Leo

  • 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

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

  • 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

  • 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 feed external at obiee on the dasboard

    Hello,
    I would like to know if we can save RSS feeds external at obiee on the dashboard.
    If yes, how to implement it.
    Thank you in advance for your answers.
    Best regards
    Dibsl

    You have to third party web sites for this, here is the one which generates code for you ..
    Open this page: http://www.rss-info.com/en_rssinclude-simple.html
    Scroll down, and In the RSS URL: enter source or rss feed.
    http://rss.news.yahoo.com/rss/internet
    Select java script and Click on Create HTML button, Copy the code from HTML Code box.
    Now in obiee dashboard, Add TEXT object,Click on properties, and copy the above HTML code and check "Contains HTML Markup", save dashboard and you wills ee the RSS result in dashboard.
    Let me know if you are looking for some other thing.
    - Madan

  • Anyone still up? I just purchased from the itunes store for the first time, and don't know how to get them downloaded to my ipod.

    Sigh.....really late and I want to go to sleep, but I just purchased some Itunes online for the first time, and I don't know how to download them to my ipod. I've never done it before, and it shouldn't be rocket science, but I can't find anything that tells me where to go to download my songs. It said something about check purchases, but I can't even find that screen.  I connected my ipod to the computer, and now it says CONNECTED...EJECT BEFORE DISCONNECTING. My BF set up the acct when he bought my ipod as a gift, and as I bought these songs for a special weekend I have planned I can't ask him how to do it.  HELP!  For some reason the password I always use is not recognized for my account... and since I can't get anyone from itunes without a proper log-in I'm at the mercy of all of you more versed in tech and itunes than I.  Is anyone still up that can help me out?

    It should keep asking for the password, because it's trying to check for purchases... As soon as you login, it will see you have pending downloads and create the downloads section on the left below Purchases under the Store section. Then it will start the music downloads there, as they will be listed one below the other.
    You could just try to check your account balance or view your account and that will trigger a password request too. You can just click on that and say that now iTunes keeps asking for the password and ask him to help you with that. Trick would be to interrupt him so that he carries on with another task after, so he doesn't notice the download. Or you carry on with email or browsing which you were "busy" with when iTunes interrupted you for the password (stupid iTunes)

  • 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

  • When i try to download the newest version of itunes it says "the feature you are trying to use is on a network resource that is unavailable" and then it gives me an alternate path to a folder containing the installation package for itunes64.mis, help

    when i try to download the newest version of itunes it says "the feature you are trying to use is on a network resource that is unavailable" and then it gives me an alternate path to a folder containing the installation package for itunes64.mis, help

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How to create a custom task in SRM for the standard task

    Hi Gurus,
    How to create a custom task in SRM for the standard task  eg: TS10407929
    regards,
    George.

    from PFTC itself. Same.

  • Can I have multiple iTunes accounts for the same Ipod?

    Can I have multiple iTunes accounts for the same Ipod? What I mean is can I use multiple iTunes accounts through the same iPod for buying stuff?

    I believe you're limited to syncing DRM'd items from 5 different accounts.
    tt2

  • My daughter has shared my iTunes account for the past 10 years. she has now established her own iTunes account. how can she transfer content from my iTunes account to her new iTunes account?

    My daughter has shared my iTunes account for the past 10 years. Now that she has established her own iTunes account, how can she transfer content from my account to her new account?

    Hi Dennis,
    If you want to share iTunes purchases between multiple accounts in the same family you could use Family Sharing.
    Sharing purchased content with Family Sharing - Apple Support
    Take care,
    Nubz

  • How can I create a new E-mail address for the Marketing Manager

    Hullo,
    how can I create a new E-mail address for the Marketing Manager (i.e. marketing professional role in SAP CRM) please.
    That when you go and create a new E-mail campaign you need to choose an E-mail form in addition to the E-mail address of the Marketing Manager.
    Kind Regards.

    Hi Alhussien
    Add it to his Position in the Organisational Model. Transaction PPOMA_CRM.
    Under there address section is an option to populate the email address.
    Regards
    Arden

Maybe you are looking for

  • Apple Airport(Extreme), time capsule, what is better?

    I am slightly confused what is the difference between the time capsule and airport and different model, etc. I have Apple TV and an IPad so what benefit can I gain from getting either of these product what features do each posses and what requirement

  • Outlook Quick Step order of execution is broken

    I have implemented Getting Things Done using Outlook at work and it's been working wonderfully for me. I'm currently on Office 2010. I have Quick Steps configured that do the following: 1. Categorize the message 2. Create Task with message as attachm

  • BEA error: deleteTaskAttributes(int,java.util.Map)

    Hello, I have installed OIM 9100 on BEA with an Oracle Database. I got the following error message after starting OIM: <08.07.2008 11.07 Uhr CEST> <Warning> <EJB> <BEA-012034> <The Remote interface method: 'public abstract void com.thortec h.xl.sched

  • Missing and empty Events after iPhoto 9.4 update - how to restore?

    Hi folks, I updated to iPhoto 9.4 a couple of days ago and now many of my photo 'Events' are missing, and some are now appearing as empty. Can anyone help me get my pictures back (ie restore the library to its pre-9.4 update state) -- when I used Tim

  • How can I restore accidentally-deleted add-ons?

    A year ago, I wasn't fully awake and I accidentally deleted some critical add-ons that my Firefox needs to become stable. Is there a way I can restore them?