|
|
Home /
Groups /
ColdFusion Talk (CF-Talk)
cfhttp/xml help
Hi Folks,Bob Imperial 03/17/07 03:13 P Hi Bob,Randy Johnson 03/17/07 03:56 P You may have non-printing characters. I've seen this before as wellRob Wilkerson 03/18/07 12:51 P @Bob & Randy -Rob Wilkerson 03/18/07 01:26 P For anyone who's interested, I've blogged the considerations/issues IRob Wilkerson 03/18/07 03:42 P Maybe a BOM? I know we have had some issues with them and XML etc..Robertson-Ravo, Neil (RX) 03/18/07 02:01 P 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 Hi Bob, I had this happen with a couple rss feeds. I tried trimming the feed in case of any white space. That did not help it so I finally gave up. The weird thing is, the feeds worked fine if I put them in the RSS Reader. I currently use GreatNews for My RSS reader. I did some testing with online rss validators on the url in your example, it was to big for the online validators to check but It did pass the xml validator test (Well Formed), so I assume it is a valid rss feed too. Not really much help I know :-) -Randy ----- Excess quoted text cut - see Original Post for more ----- You may have non-printing characters. I've seen this before as well and I've solved it, but I can't remember how. I'll try digging up some of my old code and see if I can be some help. ----- Excess quoted text cut - see Original Post for more ----- @Bob & Randy - I cracked open some of my code and, if I was looking in the right place, this is what I did... <cfset rawXML = REReplaceNoCase ( trim ( cfhttp.fileContent ), "^[^<]*", "" ) /> This code strips out any character (printing or non-printing) that occurs before the opening "<". In a valid feed, that opening "<" would mark the start of "<?xml...>". Hope this helps. ----- Excess quoted text cut - see Original Post for more ----- For anyone who's interested, I've blogged the considerations/issues I ran into (or can remember running into) when using ColdFusion to consume a feed at http://musetracks.instantspot.com/blog/index.cfm/2007/3/18/Consuming-an-RSS-Feed-with-ColdFusion. A follow-up post will detail the issues I had when displaying the content of a feed. ----- Excess quoted text cut - see Original Post for more ----- Maybe a BOM? I know we have had some issues with them and XML etc.. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the exclusive use of the intended recipient(s). If you are not the intended recipient(s) please note that any form of distribution, copying or use of this communication or the information in it is strictly prohibited and may be unlawful. If you have received this communication in error please return it to the sender or call our switchboard on +44 (0) 20 89107910. The opinions expressed within this communication are not necessarily those expressed by Reed Exhibitions." Visit our website at http://www.reedexpo.com You may have non-printing characters. I've seen this before as well and I've solved it, but I can't remember how. I'll try digging up some of my old code and see if I can be some help. ----- Excess quoted text cut - see Original Post for more ----- it ----- Excess quoted text cut - see Original Post for more ----- I'm ----- Excess quoted text cut - see Original Post for more -----
|
Mailing Lists
|
Latest Fusion Authority Articles
|
||||||