Hi Folks,
 
I'm just getting started with learning the basics on pulling xml feeds with
cfhttp and am in need of some help with an error I get with some feeds I'm
playing with. Here's the code block I'm working with and I get the following
error on this feed and a couple of others...
 
 Content is not allowed in prolog.      
         
The error occurred in C:\Inetpub\wwwroot\testing\rss.cfm: line 10
        

8 : <body>

9 : <cfhttp url="http://www.nranews.com/rss/rss.xml"; method="GET"
resolveurl="No" ></cfhttp>

10 : <cfset MyXML=XMLParse(cfhttp.FileContent)<--- doesn't seem to like this
 
<cfhttp url="http://www.nranews.com/rss/rss.xml"; method="GET"
resolveurl="No" ></cfhttp>
<cfset MyXML=XMLParse(cfhttp.FileContent)>
 
<!---<cfdump var =#MyXML#>--->
<!------>
<cfoutput>
<cfloop index="x" from="1" to="#ArrayLen(MyXML.rss.channel.item)#">

Title: #MyXML.rss.channel.item[x].title.xmlText#  <a
href="#MyXML.rss.channel.item[x].link.xmlText#">click here</a>
#MyXML.rss.channel.item[x].description.xmlText#

</cfloop>
</cfoutput>
 
While this same block of code works fine using the feed from
http://www.tfc.edu/radio/podcasting/music.xml 
 
I'm confused here, any help in understanding this is appreciated!
 
Bob


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272912
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to