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.

Similar Messages

  • Some RSS feeds have stopped working.

    when i picked up the latest update to firefox a few of my rss live bookmarks have stopped working
    and example is http://kaitou-fansubs.com/?feed=rss2
    this feed works when you navigate to to but wont display as a live bookmark
    as it is only some sites then i don't think its just a firefox issue however as the issues only occurred after the update then i think something changed with firefox that has triggered the incompatibility

    Ahh well then i guess what changed in the update was improved validation, which has killed some badly formed feeds

  • RSS Feeds have stopped updating

    Recently my RSS feeds have stopped updating.
    Maybe post 10.4.5 Combo update (have run twice)
    Once feeds have been read they do not update. Tried deleting safari prefs, syndication folder.
    This cures for the first initial update then all feed stop again.
    Anyone have any ideas ???
    Cheers
    -s

    Simon,
    There is a lot of information on this problem in this thread: http://discussions.apple.com/thread.jspa?messageID=1498326&#1498326
    It has been around since 10.4.4. For many of us (me included) the problem seems to be having .Mac bookmark synching turned on. If you have bookmark synching turned on, try turning it off and seeing what happens. Also, some people are reporting that changing the sync frequency from "automatic" to "every hour" (or presumably the other settings would work, too) corrects the problem as of 10.4.5. It would be nice, of course, if Apple would just correct the problem altogether.
    Mark

  • 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

  • Trying to open pdf and Adobe Reader Stops Working...Please Help

    Trying to open PDF and it keeps popping up that Adobe Reader Stopped Working.  And doesn't seem to find a solution to fix.  Has been going on for a couple days.  Can't access pdf files needed for my business.

    With Reader XI I assume you mean 11.0.0; try updating to 11.0.06.
    Also, can you open Reader by itself?  If so, try to disable Protected Mode [Edit | Preferences | Security (Enhanced)].

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

  • Satellite A205 - SD Card reader stopped working after Win 7 upgrade

    Satellite A205-SP5818
    I recently upgraded to Windows 7, and, among other things, the SD Card reader stopped working. I already downloaded and installed the driver offered in this site: http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/modelContent.jsp?ct=DL&os=&category=&moid=2190493& rpn=PSAE3U&modelFilter=&selCategory=3&selFamily=10 73768663 (it's the next-to-last driver shown) but it went from not working all together to making funny noices when I insert the SD card... and then not working.
    Any ideas of other drivers that might work, or any kind of other solution?
    Thanks.

    Hi
    Try to remove eh SD card controller from the device list.
    Then reboot the unit.
    After that windows will ask you for an driver.
    You can download this driver:
    [SD Driver, Flash Memory v2.0.0.7|http://cdgenp01.csd.toshiba.com/content/support/downloads/driver_cardreader_ti_25844A.exe]
    You should unzip this package and has to point the driver files in this folder
    This should helps to get the SD card reader working again

  • HP Pavilion elite sd card reader stopped working

    System -HP Pavilion Elite  HPE Series  500z   Product No XX091AV#ABA
    Operating System - Windows7
    The sd card reader stopped working.  tried everything
    No error messages

    Hello @rusty99nail,
    I understand that your SD Card Reader is not working on your HP Pavilion Elite HPE-500z CTO Desktop PC. Has it ever worked? If so I suggest you follow the steps in the HP Support document: Using Microsoft System Restore (Windows 7) and roll your system back to a point in time where your SD Card Reader worked.
    If it still does not work after the Microsoft System Restore I would like you to do a backup and recovery of your computer back to factory settings. To backup your personal information and ensure that it is not lost I would like you to review and follow the steps set out in the HP Support document: Backing Up Your Files (Windows 7), which will ensure your personal files are up to date.
    ***WARNING!! If you want to keep any emails or bookmarks/favorites you will want to back those up as well as I do not believe they are backed up in the HP Backup process.
    Next, I would like you to review and follow the steps set out in the HP Support document: Performing an HP System Recovery (Windows 7), which will you through recovering your computer back to factory settings.
    *** IMPORTANT - Your personal files such as libraries, personalization settings, user accounts, and desktop themes are permanently removed. As well the computer settings are returned to the defaults (the way it was when it came from the factory). All apps and software that were installed on the computer when it came from the factory are reinstalled, and their settings are reset to the defaults. Additionally, software, apps, programs, and everything that you have installed or saved on the computer are permanently removed.
    If the above steps did not resolve your issue please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    I would like to thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Card reader stopped working

    My card reader (sd,ms,xd) quit working. It worked for two years with no problems and today it quit. I have an HP Pavilion Slimline s5220y desktop and Windows 7. When an SD card is plugged in, nothing. Autoplay is on and I am able to transfer pics manually from the card to the PC. Also, simultaneously, when I try and attach a pic to an email (gmail) only 5 library folders are displayed out of the 50+ folders in my My Pictures library.  This seemed to happen about the same time as Google wanted me to use Drive; could there be a Google gremlin at work here? I'm not much of a computer guy so I need simple answers, please.

    Hello larrydayton,
    Your card reader stopped working correctly.
    Since you’re having multiple problems at the same time, I’d suggest a system restore.
    This will take the system back to when everything was working correctly without affecting your personal files.
    Here is a link on how to do a restore.
    Let me know how everything goes
    Have a good day.

  • 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

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

  • After installing Mavericks Acrobat reader stopped working, Skype stopped working, lost a bunch of e-mails in my gmail account in Mail.

    After installing Mavericks Acrobat reader stopped working, Skype stopped working, lost a bunch of e-mails in my gmail account in Mail. Anyone has a fix?  I can't open PDF files anymore...

    Do a backup.
    Take notes of all account information or take screen shots. You may need to set the accounts up again. Quit Mail.
    Copy the line below.
    ~/Library/Containers/com.apple.mail
    Select Go/Go To Folder from the Finder menu bar. Paste the line into the window. You won’t see it.
    Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Relaunch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    Show User Library Directory in Mac OS X 10.7 Lion & 10.8 Mountain Lion
    You might want to bookmark the command. I had to use it again after every update. I have also been informed that if you drag the user library to Finder it will remain visible.

  • Can I make my iMac 10.6.8 work with a usb superdrive? The internal disk reader stopped working.

    Can I make my iMac OS X(10.6.8) work with a usb superdrive? The internal disk reader stopped working.

    There are a couple of Apple Superdrives - one will only work with a couple of semi-resent Mac models without a Superdrive; the other supposedly works with all newer models without a superdrive. One of them will not work with any Mac which has a (non-working) built-in Superdrive.
    So, the best way around this is to buy a third party DVD drive/burner.

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

  • Dv4t-1200 CTO Digital Persona Fingerprint Reader stopped working

    I recently posted a question in the Windows 8 Expert Day forum, thought I was getting somewhere, and I think it either got too complicated or the Expert Day was over, so no more help. Don't know.
    Here is the link to the full post, so that you can have full information of what has already been tried:
    dv4t-1200-CTO-Digital-Persona-Fingerprint-Reader-stopped-working
    I was hoping that someone might have further suggestions on the Service installation section in this inf is invalid message I keep getting while trying to install the drivers for the device.
    I appreciate your help.
    System:  Pavilion dv4t-1200 CTO
    Op System:  Windows 8 64-bit Professional

    I got this reply from DigitalPersona:
    "DigitalPersona made the decision late last Spring, to discontinue the Personal products. There will be no further revisions."

Maybe you are looking for

  • Merging with microsoft account

    I had one skype account which I deleted because I didnt like the username. My microsoft account was merged with that skype account. Now I have created a new Skype account and I want to merge the same microsoft account with this new skype account. But

  • I am trying to update Firefox 3.6.8 to the most current version on my Mac but it fails each time. Help

    I am able to download the newest version but it will not direct me to the 2nd and 3rd steps. Looking at the history, it has also been failing security updates since March of this year.

  • Problem in installation of Oracle Express

    I have problem in installation of Oracle Express 6 My problem is that when i click the setup file it doesnt go anyfurther and the computer does not hang even.And even if i try to run the setup file again i get the same response. i am installing all t

  • How to change the limitation of Table name's length?

    The length of table's name or field's name is limited to 30 characters. Can I change it? If I want to create a long name table,then how can I do? Thanks in advance!

  • Authentification Open Document Link

    Hello I'm using WebI in BO Edge with SAP authentification. The Report has an open document Link to a Crystal Reports. The Databas configuration of this Report (CMC) is set to SSO. When I stert the WebI and click on the Link, a window pops up with a l