I have an xml news feed on my site but on the page that the xml news comes up on is slow. Is this a result of the xml parsing, the xml supplier...what can I do....
Code:
<cfhttp url="MY XML FEED" method="GET" resolveurl="No" ></cfhttp>
<cfset world=XMLParse(cfhttp.FileContent)>
<cfoutput>
<cfloop index="x" from="1" to="10">
<img src="images/documentWhite.gif" width="16" height="11" />
<a href="readNews.cfm?category=Local Sports&loop=#x#"><span class=cDef onMouseOver="this.className='cRoll'" onMouseOut="this.className='cDef'">#world.rss.channel.item[x].title.xmlText#</span></a>
<br />
</cfloop>
</cfoutput>