Creating a RSS (feed) reader in Flash with AS2

Hi everybody and thank you for reading. I´m working in a rss reader for my website, that has already a rss channel created. I created this in a file that is called news.rss. So I made the interface of the reader in Flash, and then continue inserting a code. But when I try the swf, it just shows the title of my channel, but any of my news. What is the problem? Here is my code: 
var rssurl:String = "http://amorenaccion.netau.net/news.rss";
//var rssurl:String = "unijimpe.xml";
var rssxml:XML = new XML();
rssxml.ignoreWhite = true;
rssxml.load(rssurl);
rssxml.onLoad = function() {
    var nodo:XMLNode = rssxml.firstChild.firstChild;
    var vtit:String = "";
    var vurl:String = "";
    var vdes:String = "";
    var vcon:String = "";
    for (i=0; i<nodo.childNodes.length; i++) {
        var snodo:XMLNode = nodo.childNodes[i];
        switch (snodo.nodeName) {
            case "title":
                vtit = snodo.firstChild.nodeValue;
            break;
            case "link":
                vurl = snodo.firstChild.nodeValue;
            break;
            case "description":
                vdes = snodo.firstChild.nodeValue;
            break;
    txttitle.htmlText = "<a href=\"" + vurl + "\">" + vtit + "</a>";
    txtdescription.text = vdes;
    txtcontent.htmlText = vcon;
function getContent(vxml) {
    var stit:String = "";
    var surl:String = "";
    var sdes:String = "";
    for (j=0; j<vxml.childNodes.length; j++) {
        var sxml:XMLNode = vxml.childNodes[j];
        switch (sxml.nodeName) {
            case "title":
                vtit = sxml.firstChild.nodeValue;
            break;
            case "link":
                vurl = sxml.firstChild.nodeValue;
            break;
            case "description":
                vdes = sxml.firstChild.nodeValue;
            break;
    return "<a href=\""+vurl+"\"><b><font color=\"#990000\">"+vtit+"</font></b></a><br>"+vdes+"<br><br>";

You should use the trace() function to see what values your code is processing for the loaded data.  Looking at the rss file itself it does not appear to be consistent with its structure, so you might need to check that out as well.

Similar Messages

  • How can i embed a rss feed to a Flash site?

    I already made a rss feed. That means i have created a xml file with the rss elements and save it. This is the code:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <rss version="2.0">
      <channel>
       <title>RSS Guia Facil</title>
       <link>
    http://es.geocities.com/rss_guia_facil.html
       </link>
       <description>Guia fácil y sencilla sobre el formato RSS</description>
       <item>
        <title>Qué es el RSS</title>
        <link>http://es.geocities.com/rss_guia_facil/que_es_rss.html</link>
        <description>Visita la Guía Fácil del RSS para saber qué es el
                    formato RSS</description>
       </item>
       <item>
        <title>Para qué sirve el RSSl</title>
        <link>
           http://es.geocities.com/rss_guia_facil/para_que_sirve_rss.html
        </link>
        <description>
        Visita la Guía Fácil del RSS y conoce para qué sirve el
        formato RSS
        </description>
       </item>
       <item>
        <title>Cómo se usa el RSS</title>
        <link>
           http://es.geocities.com/rss_guia_facil/como_se_usa_rss.html
        </link>
        <description>
        Visita la Guía Fácil del RSS para saber cómo usar el
        formato RSS
       </description>
      </item>
    </channel>
    </rss>
    Now i wanna embed the option of rss feed in my website, but it is made in Flash. I have already the code in html for this, it would be like this:
       <a type="application/rss+xml" href="nombre de tu canal RSS.xml">
    <img src="imagen que quieres que sirva de enlace.gif">
       </a>
    But I don't know how to "translate" this code into an actionscript....can anybody help me please!!!???
    Thak u for reading

    normally, an rss feed is loaded from another domain.  it looks like you've copied an rss feed and saved it as a local file.
    if you want to use as2 to load a local xml file, use the xml class.  if you want to load the cross-domain rss feed, use the loadvars class to load the return from a server-side script (eg, php) that loads the cross-domain rss feed.

  • I am trying to create a RSS feed from scratch

    Okay so I want to create a RSS feed with these two links:
    http://www.networkcomputing.com/rss.php
    and
    http://www.voip-news.com/rss/vnar.xml
    I have checked out different widgets and what not but I want to create this from scratch.
    I started this xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <rss  version="2.0">
    <channel>
    <title>Network Computing</title>
    <link>http://www.networkcomputing.com/all.xml</link>
    <description>Top stories and blogs</description>
    <lastBuildDate>Wed, 14 Jul 2010 10:19:00 GMT</lastBuildDate>
    <language>en-us</language>
    <item>
    <title>Catbird, Hytrust Offer Integrated Virtualization Compliance Reporting
    </title>
    <link>http://www.networkcomputing.com/virtualization/catbird-hytrust-offer-integrated- virtualization-compliance-reporting.php</link>
    <guid>http://www.networkcomputing.com/virtualization/catbird-hytrust-offer-integrated- virtualization-compliance-reporting.php</guid>
    <pubDate>Wed, 14 Jul 2010 10:19:00 GMT</pubDate>
    <description>Virtualization security companies Hytrust and Catbird will offer integrated compliance reporting that encompasses the hypervisor-host and network environment down through the virtual machine level. Catbird vSecurity, delivered either as a hosted service or virtual appliance, ensures correct hypervisor configuration and deploys network access control (NAC) against unauthorized access and protection against attack via IDS/IPS. Its VMShield component protects client VMs, tracks them as they move and enforces policy.</description>
    </item>
    </channel>
    </rss>
    So I created a button on my home page, and it is linked to this XML file. Everything works great except it only shows the item that I coded in...I want it to show ALL items.
    Can I do this without having to input each item individually?
    Is this how I should do it anyways with a button linking to this xml file?
    I really want to have like 3-5 of the posts to auto update on my home page but I dont know how to embed the RSS into my HTML home page file.
    Also, the way I have it coded, will it automatically update the new posts?
    or do I have to wait for the new post and input the item into the xml file?
    I am very new to the RSS feed so please help.
    Thanks,
    cp

    Here is my HTML code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <!--
    body {
        background-color: #000000;
        background-image: url(images/background.jpg);
        background-repeat: repeat-x;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body {
        background-color: #3B5998;
    .style2 {
        font-size: 14px
    .style6 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #97B1F4;
    .style7 {color: #FFFFFF}
    .style8 {
        color: #97B1F4;
        font-weight: bold;
        font-size: 12px;
        font-family: Helvetica;
        margin-left: 35px;
    .style9 {color: #97B1F4}
    .style10 {
        color: #97B1F4;
        font-size: 12px;
        font-family: Helvetica;
        font-weight: bold;
    .style11 {
        color: #97B1F4;
        font-size: 12px;
        font-family: Helvetica;
    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script src="http://config.spry-it.com/js?f=1.7/data/1.7/jsondataset/nestedjsondataset"></script>
    <script src="SpryAssets/SpryDataYQLDataSet.js"></script>
    <script>
    var dsItem = new Spry.Data.YQLDataSet(
        'select * from xml where url="http://www.networkcomputing.com/all.xml"',
        false,
            format:"xml",
            preparseFunc: function( strxml ){
                var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
                return ds.data;
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    </script>
    </head>
    <body>
    <div id="container">
    <div id="banner"></div>
    <div id="navigation">
    <div id="navbar">
      <ul class="style2">
        <li><a href="index.html">Home</a></li>
        <li><a href="solutions.html">Solutions</a></li>
        <li><a href="services.html">Services</a></li>
        <li><a href="support.html">Support</a></li>
        <li><a href="about.html">About</a></li>
        <li><a href="contact.html">Contact</a></li>
      </ul>
    </div>
    </div>
    <div id="navigation2">
    <img src="images/navigation_2.jpg" />
    </div>
    <div id="content">
      <div id="right_content">
    <div id="video">
    <embed src="network.mp4" width="320" height="162" autostart="true" style="background-color: Black; " type="video/quicktime" autoplay="true" loop="true" controller="true" pluginspage="http://www.apple.com/quicktime/download/"></embed>
    </div>
    <div id="title_bar">
        <p class="style8"><a target="_blank" href="http://www.networkcomputing.com/all.xml">RSS Network Computing</a></p>
        </div>
    <div id="PageWrap">
      <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <button onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
    </div>
    <div id="title_bar">
        <p class="style8"><a target="_blank" href="http://www.voip-news.com/rss/vnar.xml">RSS VoIP News</a></p>
        </div>
        <p class="style11"><a href="voip_rss.html">View Now (Click Here)</a></p>
    </div>
    <div id="left_content">
    </div>
    <div id="logos">
    </div>
    </div>
    <div id="footer">
    <div id="footerbox">
    <p class="style6"><span class="style7">Stanford Technologies</span> © Copyright, 2010. All Rights Reserved. Powered by <span class="style7">Chris Proett</span></p>
    </div>
    </div>
    </div>
    </body>
    </html>
    I just want to take away the scroll bar in FF.

  • Is it possible to create an RSS feed in Dreamweaver CC (Mac 10.8.5)?

    I'm a relative beginner in terms of HTML/CSS and Dreaweaver CC. I've created a site using the dynamic layout option in Dreamweaver CC and now want to explore sharing out my content via RSS feeds. I've tried to install the Dreamfeeder extension but it doesn't work and I can't find much posted on this topic. What are my options here?

    RSS Feeds are XML files.
    How to Create an RSS Feed (with Sample XML File)
    Nancy O.

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

  • Horizontal RSS feed- is it possible to create an RSS feed (showing both pictures and text), that scrolls from left to right rather than top to bottom?

    I am trying to create an RSS feed that will scroll from left to right rather than top to bottom as is standard in iWeb.  Ideally, I would like to show both images and text. I am actually using iWeb '09.  I am not opposed to writing html code if necessary.
    Thank you for your help!

    Probleme solved without having to change anything in the flash.
    The solution was to add a small part in the CSS in HTML
    html {
    overflow-x: hidden;
    overflow-y: auto;
    Solve probleme. All browser. VERY usefull to know !

  • RSS feed reader stopped working

    Hi,
    I have an RSS feed reading function that worked just fine until yesterday.  I grab an RSS feed from google news using cfhttp and then parse it using XMLParse.  I am attaching the code below.
    Does anyone know if anything changed at Google or somewhere else that would cause my code to stop working?  Instead of the expected results, I see the browser saying the page is loading but never get any results.
    Perhaps there is a parameter I never set in the CFHTTP line and skated by without it for all this time.  It is definitely hanging up on the CFHTTP call.
    Thanks for the help.
    With relation to the code, the search term I am using is "football" and the searchtype is "AND".
    <CFPARAM NAME="newsfeed_start" DEFAULT="1">
    <CFPARAM NAME="newsfeed_end" DEFAULT="5">
    <CFQUERY DATASOURCE="#sitedatasource#" NAME="otherinfo">
    SELECT newssearchterm, newssearchtype
    FROM otherinfo
    WHERE siteid = #currentsiteid#
    </CFQUERY>
    <CFSET newsterm = replace(otherinfo.newssearchterm," ","+","all")>
    <CFIF otherinfo.newssearchtype EQ "AND">
    <cfhttp url="http://news.google.com/news?hl=en&ned=us&q=#newsterm#&btnG=Search+News&output=rss" method="GET" resolveurl="No" charset="utf-8" userAgent="firefox"></cfhttp>
    <CFELSE>
    <cfhttp url="http://news.google.com/news?as_q=&svnum=10&as_scoring=r&hl=en&ned=us&aq=f&ie=UTF-8&btnG=Go ogle+Search&as_epq=&as_oq=#newsterm#&as_eq=&as_drrb=q&as_qdr=&as_mind=1&as_minm=1&as_maxd= 31&as_maxm=1&as_nsrc=&as_nloc=&geo=&as_occt=any&aq=f&output=rss" method="GET" resolveurl="No" charset="utf-8" userAgent="firefox"></cfhttp>
    </CFIF>
    <cfset my_news_xml=XMLParse(cfhttp.FileContent)>
    <CFIF len(my_news_xml) GT 1200>
    <cfoutput>
    <CFIF ArrayLen(my_news_xml.rss.channel.item) GT newsfeed_end>
          <CFSET newsfeed_end = newsfeed_end>
    <CFELSE>
          <CFSET newsfeed_end = ArrayLen(my_news_xml.rss.channel.item)>
    </CFIF>
    <cfloop index="x" from="#newsfeed_start#" to="#newsfeed_end#">
    <LI><A HREF="#my_news_xml.rss.channel.item
    [x].link.xmlText#">#my_news_xml.rss.channel.item[x].title.xmlText#</A></LI></cfloop>
    </cfoutput>
    <CFELSE>
    <CFOUTPUT>There are no headlines matching your search term: #newsterm#
    </CFOUTPUT></CFIF>

    RSS feed was replaced by web-admin, works now.

  • Creating an RSS Feed

    Hi,
    Could anyone help me. I would like to create an RSS feed
    using the 'export recordset as XML' extension, but I'm not sure
    exactly how to do that. I need to make sure that the XML which is
    output has all the correct nodes in the right places and is correct
    for each entry in the DB.
    Any help would be awesome!
    Thanks,
    Shane

    Hello, you need some software to create a RSS feed, there is a cool one called Feeder, i use it and it works flawless!
    http://reinventedsoftware.com/feeder/
    Regards!

  • RSS feed reader in Labview

    Does anyone have an example of a Labview based RSS feed reader?
    I would like to be able to grab the current weather conditions from the NWB RSS feeds
    Since we are right next to the local airport it would be cheaper than installing our own weather station.
    If not anyone got a good explanation of what an RSS feed is so I could write my own?

    They should be out there somewhere.
    However to get started have a look at my 'getTwitter Status'
    If you install the JKI Easy XML toolkit you will have an example RSS reader in the  Example Finder
    Ton
    Message Edited by TCPlomp on 26-04-2010 10:41 PM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • NavigateToURL - RSS Feed Reader Linking Issue

    Hi, I am working on an RSS feed reader. The reader pulls blog entries just fine, but the results are not clickable. Tried numerous variations of "navigateToURL", but am relatively new to the Flex framework. Is there a way to make generated feed clickable? See code below:
    <?xml version='1.0' encoding='UTF-8'?>
    <s:Application xmlns:d="http://ns.adobe.com/fxg/2008/dt"
                   xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                   xmlns:feed="services.feed.*"
                   width="275" height="325" backgroundColor="#E2E7E9" preloaderChromeColor="#E2E7E9"
                   viewSourceURL="srcview/index.html">
        <!-- Blog Feed 1.0 -->
        <!-- Properties of the parent ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import flash.net.navigateToURL;
                protected function list_creationCompleteHandler(event:FlexEvent):void
                    getDataResult.token = feed.getData();
                public function feed_clickHandler(event:MouseEvent):void
                    navigateToURL(new URLRequest("http://blog.mysite.com/feed/"+getDataResult.lastResult.title));
            ]]>
        </fx:Script>
        <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:Declarations>
            <s:CallResponder id="getDataResult"/>
            <feed:Feed id="feed" showBusyCursor="true"/>
        </fx:Declarations>
        <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <fx:DesignLayer d:userLabel="Content">
            <s:BitmapImage d:userLabel="Shape 2" x="1" y="64" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Shape 2.png')"/>
            <s:BitmapImage d:userLabel="line highlight" x="263" y="66" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/line highlight.png')"/>
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Feed Item">
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Scrollbar">
            <s:List id="list" x="4" y="64" click="feed_clickHandler(event)"
                    creationComplete="list_creationCompleteHandler(event)"
                    skinClass="components.FeedDataListSkin4">
                <s:AsyncListView list="{getDataResult.lastResult}"/>
            </s:List>
        </fx:DesignLayer>
        <fx:DesignLayer d:userLabel="Header">
            <s:BitmapImage d:userLabel="Shape 1" x="1" y="1" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Shape 1.png')"/>
            <s:BitmapImage d:userLabel="Lines" x="12" y="43" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Lines.png')"/>
            <s:BitmapImage d:userLabel="Pomona Swap Meet" x="11" y="8" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Pomona Swap Meet.png')"/>
            <s:BitmapImage d:userLabel="Blog" x="184" y="31" smooth="true"
                           source="@Embed('/assets/images/PSM-RSS-Feed/Blog.png')"/>
        </fx:DesignLayer>
        <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    </s:Application>
    I tried to connect a click event to the feed "title", but I'm not sure that the mouse event function is correct, or that I have placed the "clickHandler(event)" in the right location. Any thoughts would be appreciated.
    Thx.

    apex.oracle.com is locked down pretty tight since it is a free service.
    I'm surprised that running a restricted Package (DBMS_NETWORK_ACL_ADMIN) didn't throw an error and laugh at you.
    If you want to test that app, you must bring it "in house".
    MK

  • Nokia N8 RSS feed reader bug

    I have a problem with my RSS feed reader on my N8. When i have selected an RSS feed to start reading it says "Tuntematon virhe" english something like "unknown problem" Has anyone other faced problem like this?
    Solved!
    Go to Solution.

    Hardtothinkname wrote:
    And is there anyway to fix this?
    The most common "fix" so far has been to uninstall Fring - do you have that installed ?

  • 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

  • Using a Domain Log Filter to create an RSS feed?

    Hi,
    Not sure where to post this, but our production WLS8.1 server runs a handfull of seperate servers.
    Is there a way to aggregate any critical/severe logging events that are generated within each server instance?
    Is the domain log filter the piece that I need to capture these events and publish them to an RSS feed that our team can subscribe to?
    thanks for any suggestions!

    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

  • Where's the RSS feed reader

    in  my old BBBold 9780, I used the RSS feed reader to subscribe to feeds of my fav blogs and read them... I cant seem to find the similar function in the Q10, can anyone help. There is a "reader" thingy in Browser, but it doesnt do anythng...many thanks.

    There are tons of RSS readers in the BlackBerry World

  • What is the best rss feed reader for my mac?

    what is the best rss feed reader for my mac?  I have a macbook pro, my OS is Mountain Lion, and browser is firefox.  Thanks

    What's best is a matter of personal preference.  Search Google or the App Store and read the reviews.

Maybe you are looking for

  • Embedding LR web gallery into DW page

    I am having problems with exporting an Airtight Autoviewer flash web gallery in Lightroom & then importing it into Dreamweaver as an embed on an HTML page I'm designing. I'm on the creative cloud, so Dreamweaver CS6 & Lightroom 5. Dreamweaver inserts

  • Transfer  item text invoice in Document FI

    Hi developers, I wish transfer the item text of the invoice SD in field of Account Document FI  (BSEG-SGTXT ). Have you some ideas for help me!!!!!!!! Thanks in advance Domenico

  • Unable to access Webdynpro abap application externally

    Hello, We have created a WebDynpro ABAP application,it is a simple application talking to the ECC. We are able to run this application on our portal within the network,but when we try to access the application from an external network it says Interne

  • InDesign CC 2014 crashes and dont have any tools at all.

    Please see my screencast here: indesign crash - YouTube I have tried deleting and reinstalling and replace my preferences. No change. Please give me some advice. Thanks a lot people.

  • Performance - Application Module instantiation

    I am experiencing poor performance the first time a user instantiates a application module which is taking roughly 8 seconds down to 1 second for subsequent attempts. Pooling is enabled and we are using JDev 10.1.2 build 1811. I was wondering if some