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 ?

Similar Messages

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

  • 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

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

  • Nokia X6 RSS feeds error

    When I want to enter RSS feeds on Nokia X6, it pops up unknown error. The RSS feeds on the contacts bars stopped responding when I want to add or remove contacts RSS feeds. I really hate this type of stupid Symbian phone, too many bugs! I'm planning to move to Android soon.

    @jussyb
    See what you mean about the optimistic pricing:http://store.ovi.com/content/9202
    No experience of this application but also thought it could be used in "Offline" mode?
    Happy to have helped forum with a Support Ratio = 42.5

  • RSS Feed Read Synchronization?

    I had posted this a couple of months ago and did not get a response. Just reposting it to see if anyone might have any ideas:
    I have multiple computers which I have synchronized my RSS feeds. My question is thus: Is there a way to synchronize the articles that you have marked read between computers? Most times, I come to a different computer and the articles that I have read one one computer are showing up as unread on the next computer. Can you have the read articles synchronized? I use Safari for Mac as well as Safari for Windows. I have MobileMe set up between all computers.

    Hi Zeff
    I'm assuming you are using Safari as your RSS reader:
    Keeping the feeds and bookmarks for that matter synchronized between computers is not an easy task. This is definitely a ''work in progress" on Apple's part.
    In theory, if you mark articles as read on one computer, then synch your bookmarks to the cloud and then on to the other computers, the article counts ought to comport. However, the actual result is sketchy at best. It used to work for me, however, over time, I found my RSS counts on my other two machines to be significantly out of synch. I filed a bug report with Apple (via the Safari Menu). Perhaps Snow Leopard will provide a better way to synch the feeds.

  • RSS Feed Reader in Catalyst?

    Hi everyone,
    Is there a way for a Flash Widget created in Catalyst to read an RSS feed? If so, how do I go about doing that?
    Thanks a bunch!
    Rob

    Sorry.  That needs to be fixed.
    Here is an article from the Flex Developers Center:
    http://www.adobesystems.ca/devnet/flex/articles/flashbuilder4_http_connection_02.html
    And a resource for learning Flex in general (Flash Builder is the development environment).
    http://www.adobe.com/devnet/flex/videotraining/
    The particular area you want to look at is Requesting and retrieving XML data from the server.
    http://www.adobe.com/devnet/flex/articles/flashbuilder4_http_connection_03.html
    Rss feeds have a common XML structure.  Here's a reference on the rss xml structure. 
    http://www.webreference.com/authoring/languages/xml/rss/feeds/
    You'll need to understand this structure so that you know which node of rss content to access. (item, title, description, link)
    This would make a nice tutorial or blog post showing workflow from Photoshop > Flash Catalyst > Flash Builder.
    Best,
    Tanya

  • Flash Deal Of The Day RSS Feed Reader

    I need to design a flash widget for MySpace that reads an rss feed and just shows the latest entry. I have seen flash rss feed widgets before but they show all the listings. I need it to check every day at 1:00am for the new one and load it automatically from a third party site (feedburner). I have some knowledge of flash but none in actionscript. I use the Creative Suite CS4. I am a fast learner so please explain in depth so I get the concept.
    Thank you in advance for any help.

    Ok I went through the tutorial in the video and everything seems to be working alright except I need to include links.
    Here is a portion of theXML file that is read:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="WordPress/2.7.1" --><rss version="0.92">
    <channel>
    <title>SizzleTwist</title>
    <link>http://blog.sizzletwist.com</link>
    <description>Sizzling Hot Prices on Lots of Cool Stuff!!</description>
    <lastBuildDate>Tue, 25 Aug 2009 13:47:54 +0000</lastBuildDate>
    <docs>http://backend.userland.com/rss092</docs>
    <language>en</language>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Sizzletwist" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>Home Surveillance System: Mini Wireless Security Camera</title>
      <description>We invest a lot for our luxury to make life comfortable but while investing in luxury we often forget to protect it and make the life unsafe and unsecure.
    Homeland Security 2.4 Ghz Wireless Motion Activated Security Camera and Receiver is a perfect solution to bring the safest and most ...</description>
      <link>http://blog.sizzletwist.com/index.php/home-surveillance-system-mini-wireless-security-came ra/</link>
       </item>
    <item>
      <title>National Geographic Egana Watch Yellow Chrono NG712GKSY</title>
      <description>You are right; National Geographic did not manufacturer this watch. This high quality watch was made by Egana for National Geographic. Egana is the manufacturer of brands such as Pierre Cardin, PUMA, and Carrera. When I first saw these watches I was not only impressed by the looks but also pleasantly ...</description>
      <link>http://blog.sizzletwist.com/index.php/national-geographic-egana-watch-yellow-chrono-ng712g ksy/</link>
       </item>
    <item>
      <title>High Quality Light Weight Electric Blaster Sunglass</title>
      <description>Quality of sunglasses includes high quality of lens and frame. But the benefit gets multiplied if it is design by the well-known artist.
    The Electric Blaster Sunglasses Trans Brown Stripe with Bronze Lens has high quality of polycarbonate lens, 8-Base Grylamide frame and it is design by the well-known artist- Ozzie Wright.
    Pro-surfer, musician, and ...</description>
      <link>http://blog.sizzletwist.com/index.php/high-quality-light-weight-electric-blaster-sunglass/</link>
       </item>
    The AS code just loads the description when clicked on. I need it to include the link located in the link tags.
    Here is the As code:
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    lb.addEventListener(Event.CHANGE, itemChange);
    function itemChange(e:Event):void
    ta.text = lb.selectedItem.data;
    var xml:XML;
    function onLoaded(e:Event):void
    xml = new XML(e.target.data);
    var il:XMLList = xml.channel.item;
    for(var i:uint=0; i<il.length(); i++)
      lb.addItem({data:il.description.text()[i],
          label:il.title.text()[i]});
    loader.load(new URLRequest("http://feeds2.feedburner.com/SizzleTwist"));
    I want it to display the description then the blog link. As I mentioned I am just beginning with action script so I have no iead what to do.

  • Nokia N97 RSS Feeds

    Hi peeps!
    how do you go about getting RSS feeds??
    i've tried getting them like the Gadget Show website feed from the UK and can't get it on mobile...

    HI
    Try using the web browser to select the page and then go into the web settings ( where you save a site etc.)
    At the bottom of this you will see an icon to subsc. feeds
    Hopefully this helps
    mark

  • Integrating RSS feed reader into Fireworks Header

    Hello,
    I have a simple header for my website created in FW and I
    wish to embed an RSS news feed into the header area.
    Can you advise where (in FW or DW) to work and how I proceed.
    I am considering CARP for the aggregator (although I've never
    used CARP).
    Thanks for the advice,
    Jerry

    > I have a simple header for my website created in FW and
    I wish to embed an
    > RSS
    > news feed into the header area.
    FW is a graphics editor, so not the right app for it.
    > Can you advise where (in FW or DW) to work and how I
    proceed.
    You'd use DW and the appropriate back end
    programming/scripting needed.
    Which programming/scripting would depend on the server
    technologies you want
    to use.
    > I am considering CARP for the aggregator (although I've
    never used CARP).
    Then I imagine you would want to read about that on their web
    site, as that
    would be a specific application.
    -Darrel

  • RSS feed reader

    Hey guyes ,
    I am trying to show some news related to cricket on my site by using RSS.
    How can i resolve this problem.
    I just want to show headline and few lines about that using jsp and if neede can use servlet!!!
    So how to do that
    What it actually needed ?
    Please do reply.
    Thanks
    Pankaj Jain

    A really easy solution is to use a specialized parser like ROME
    For a quick example, see this page .
    Bye.
    RG.

  • Where is the RSS feed reader in FF5?

    I added the "Subscribe to this page" icon to the Navigation Bar, but when I subscribe to a page, all I get is a measly drop-down menu for that page in the Bookmarks Toolbar.
    Where is the full-page, formatted feed page that Firefox used to have? I did read the one question on this subject, but the answer was of no help.

    Did you look at: http://support.mozilla.com/en-US/questions/845262 ?

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

Maybe you are looking for