Re: cfheader breaks my xml

2006-04-05 Thread Rob Wilkerson
Hey Andy - I just spent the better part of the day (I'm embarrassed to admit) debugging a problem I was having with one of my XML AJaX requests that used the code I included in this thread. Although I looked at every other piece of code before I got there, it ended up being an omission in this

cfheader breaks my xml

2006-03-30 Thread Andy Jarrett
Hi, I'm having some trouble create a valid XML document using cfheader to change the page content. My simple file looks like this: xml.cfm ?xml version=1.0 encoding=UTF-8? root node child1/child /node root I open this up and its valid. I know change the content

Re: cfheader breaks my xml

2006-03-30 Thread Rob Wilkerson
I'm not sure if this is relevant because I'm not sure how you're using your XML, but I use cfcontent instead of cfheader and it works great: cfcontent type=text/xml reset=Yes / cfoutput ...myXML... /cfoutput On 3/30/06, Andy Jarrett [EMAIL PROTECTED] wrote: Hi, I'm having some trouble

Re: cfheader breaks my xml

2006-03-30 Thread Andy Jarrett
cheers rob On 30/03/06, Rob Wilkerson [EMAIL PROTECTED] wrote: I'm not sure if this is relevant because I'm not sure how you're using your XML, but I use cfcontent instead of cfheader and it works great: cfcontent type=text/xml reset=Yes / cfoutput ...myXML... /cfoutput On

Re: cfheader breaks my xml

2006-03-30 Thread Rob Wilkerson
Cheers back. Judging by the sheer quantity of bangs, I assume that cfcontent worked for you. On 3/30/06, Andy Jarrett [EMAIL PROTECTED] wrote: cheers rob On 30/03/06, Rob Wilkerson [EMAIL PROTECTED] wrote: I'm not sure if this is relevant because I'm not sure how you're using your