Thank you friends for your suggestions. I tried three things...
cfoutput; this worked as I had hoped
CODE
<cfoutput>#xmlobject#</cfoutput>
cfcontent did not, because I assume it needs a path to an already written file, which I want to avoid
CODE
<cfcontent type="application/html+xml"
file="path to file"
deletefile="no">
cfheader returned the xml data but only a portion of it, not the entire construct. Very strange
CODE
<cfheader name="rss" value="#xmlobject#">
I substituted #xmlobject# with #xmlString# and got the same results all the way around. In the end the cfoutput was the best option.
So now when I run this action page, I get a cfoutput result which shows me my xml data in the browser. It looks like the pic I have attached. What I would like to do now is have a user copy and paste the url into their rss feed reader of choice. But the page is a .cfm page, not .rss or .xml
Can I somehow change the file extension of the page before it ouputs to the browser? This sounds like a long shot to me, but I was just wondering. I suspect not. You could probably easily change the file extension on an already written .xml or .cfm page, but I doubt it in this manner. Just thought I would check anyways. Thanks again!!
This post has been edited by midasxl: 22 Apr, 2009 - 07:50 AM