RSS Feeds - for generating feed if new folio is created.

Hi All,
Can we use the RSS feeds , to notify users, whenever a new folio is created.
How can we use it. ?
can anyone help me in this.
i need just an idea on it .?
Thanks
Saurabh

Since you are connected to BES (which can tightly control what can/cannot be used on a corporate BB device) then you should work with the BES admins to ensure that they allow access to CUC as it is independent of CUCM.  Secondly,  you should ensure they allow the RSS communication to/from your device and CUC.
Hailey

Similar Messages

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

  • Set up an rss feed for each iWeb page.

    Is there anyway of setting up an rss feed for any iWeb page?

    Hey johncali,
    All you have to do is click on the RSS button for the feed or go to the link directly. Firefox will figure out that it's an RSS feed and ask you if you want to subscribe. Nice and easy!

  • 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

  • I have deleted the defualt live Bookmark feed for news, what is the RSS?

    I just need to know which news feed firefox uses. It was good enough and now I've deleted it and don't know what it is? Oops. Help!

    The default ''Latest Headlines'' feed for Firefox (English):
    * Feed Location: http://fxfeeds.mozilla.com/en-US/firefox/headlines.xml
    * Site Location: http://www.bbc.co.uk/go/rss/int/news/-/news/

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

  • 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 HTTP caching headers will prevent iPhoto from re-downloading each image in a "Photo Feed" every time it checks the feed for new content?

    I've noticed a practical issue with iPhoto's File->"Subscribe to Photo Feed..." feature.
    Every time that iPhoto checks a subscribed RSS Photo Feed for new content it will re-download each and every photo in the feed.  This occurs even if iPhoto has already downloaded each image, they all have unique GUIDs set, and no content in the feed has changed since the last time it polled for it.
    My best guess is that this happens if the server offering the feed does not produce the proper cache-control parameters in the HTTP Headers that are sent by the server when the RSS feed is accessed by iPhoto.
    Does anyone know what parameter/value pairs need to be set in the HTTP headers to prevent iPhoto from re-downloading RSS enclosures that it already has?
    This is a very practical problem for feeds with a large number of photos of large file size.  Besides the obvious massive waste of bandwidth, the user receives an annoying error whenever they try to quit iPhoto before the feed and all of it's images have been re-downloaded yet again.

    Here is an example of the HTTP headers for two of the images in the feed.
    Any red flags in there that you think might be causing iPhoto to think it needs to re-download the images after it's already downloaded them once?
    HTTP/1.1 200 OK
    Content-Length: 1251893
    Date: Fri, 27 Jan 2012 15:37:49 GMT
    Server: Apache
    Set-Cookie: PHPSESSID=1b9d47ae170ba8c0a088ab7124a1677e; path=/
    Expires: Mon, 24 Jan 2022 15:37:49 GMT
    Cache-Control: max-age=315360000,public
    Pragma: public
    Last-Modified: Thu, 26 Jan 2012 23:34:38 GMT
    Accept-Ranges: none
    Connection: close
    Content-Type: image/jpeg;
    HTTP/1.1 200 OK
    Content-Length: 744151
    Date: Fri, 27 Jan 2012 15:39:01 GMT
    Server: Apache
    Set-Cookie: PHPSESSID=086c112f99ccecc266a47d66d6b47733; path=/
    Expires: Mon, 24 Jan 2022 15:39:01 GMT
    Cache-Control: max-age=315360000,public
    Pragma: public
    Last-Modified: Thu, 26 Jan 2012 02:54:40 GMT
    Accept-Ranges: none
    Connection: close
    Content-Type: image/jpeg;

  • RSS FEED FOR CISCO PRODUCT LAUNCHES

    Get notified as soon as we launch new Cisco products.
    See It in Action
    What do you think about the RSS Feeds for Cisco products launches concept? Is it useful? Are there places on Cisco.com where you would like to see it? Do you think the idea should evolve into something different? Do you think this pilot should be dropped? Discuss it now.

    I use it (just found it recently) and I like it. I would love to see one just for IOS features. It's nearly impossible to keep up on new IOS features (ie zone based firewalling) and I believe RSS would be a great help to us that use and sell Cisco products.

  • [solved] RSS feed for AUR updates?

    Is there an RSS feed for updates to AUR packages? All I've found in poking around is https://aur.archlinux.org/rss.php which seems to be just NEW additions to AUR, but I can't seem to find a feed that includes updates to existing packages...
    Have I just missed it?
    /ron
    Last edited by rps63ifid (2012-01-26 04:06:18)

    @x33a: Thanks for the follow-up. I will look into yaourt... that sounds like it might help with at least the aspect of staying current. It does still feel to me that an RSS feed or something along those lines to publish updates to packages would be a good addition.
    /ron

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

  • Feed for new rentals?

    Does anyone know if there is a feed for when new movies become available for rent on the itunes store? I've looked through the current selection and I've seen all the movies I like from the catalog. Now when I feel like seeing a movie I go to itunes store to see if there's something new, but it's not very efficient. I'd much rather have an RSS or something to alert me of new titles as they arrive.

    Hello Dean
    Check out the article below to troubleshoot your feed. There will be a link to test your feed to further troubleshoot the issue.
    FAQs: For Podcast Makers
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    Regards,
    -Norm G.

  • 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

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

Maybe you are looking for