Re: CFXML tag: Not well-formed xml output.

2008-09-29 Thread Wayne Whitten
Fairly new to CF, and I realize this is an older thread but the same issue still applies. I'm using CF8 and IE6. I need the ?xml version=1.0 encoding=iso-8859-1? line in my XML output for IE to render it without the error (An invalid character was found in text content...). If I leave

CFXML tag: Not well-formed xml output.

2006-11-10 Thread Walter Conti
A nudge in the right direction. The following code produces this error: The markup in the document following the root element must be well-formed. cfquery name=getCaps datasource=petitions maxrows=10 Select value_1, value_2, value_3 from myTable order by value_1 /cfquery cfxml

RE: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Ben Nadel
ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Walter Conti [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 3:21 PM To: CF-Talk Subject: CFXML tag: Not well-formed xml output. A nudge in the right direction

Re: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Rob Wilkerson
-Original Message- From: Walter Conti [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 3:21 PM To: CF-Talk Subject: CFXML tag: Not well-formed xml output. A nudge in the right direction. The following code produces this error: The markup in the document following

Re: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Josh Nathanson
: RE: CFXML tag: Not well-formed xml output. I just tried a similar thing and it worked. Try removing the query values (#value_[0-9]#)... Just do the XML tag structure. See if it still errors out. If not, then it's probably a data issue. Try wrapping the query values in XmlFormat

Re: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Walter Conti
Thanks everybody for your replies. As it happens sometimes, the most obvious was the culprit: some cfoutput tags missing. Learn quite a bit from your intervention though!. And to close this topic let me ask how to change the standard XML declaration produced by CFXML from ?xml version=1.0

Re: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Oğuz Demirkapı
And I would NEVER suggest to use it. :) Use Unicode wherever you can use. If your platform/program/solution do not work with it then change it, not the unicode part. :) Walter Conti wrote: Thanks everybody for your replies. As it happens sometimes, the most obvious was the culprit: some

RE: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Dave Watts
The following code produces this error: The markup in the document following the root element must be well-formed. ... cfxml variable=mydoc ?xml version=1.0 encoding=iso-8859-1? petitions cfoutput query=getCaps value_1#value_1#/value_1 value_2#value_2#/value_2

Quotes in XML Output

2004-09-14 Thread Mark Leder
Hi all, I'm pulling data from a db and writing to an XML file.The data from the description field sometimes has quotes () surrounding the text.Im generating the XML, I've tried to use #Replace(qCal.description,, ,ALL)# to remove the quotes, but an error gets thrown.How do I solve? cfquery

RE: Quotes in XML Output

2004-09-14 Thread Pascal Peters
XMLFormat()? -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 17:32 To: CF-Talk Subject: Quotes in XML Output Hi all, I'm pulling data from a db and writing to an XML file.The data from the description field sometimes has quotes

RE: Quotes in XML Output

2004-09-14 Thread Mark Leder
That's it! Thanks, Mark From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 11:34 AM To: CF-Talk Subject: RE: Quotes in XML Output XMLFormat()? -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 17:32 To: CF-Talk

xml output

2003-10-18 Thread cf
what would be the proper way to output this to xml? see below seems like ther is a tag u got to add this is the code in flash that needs to load it off of my cfm page var MsgList = new XML(); MsgList.ignoreWhite=true; MsgList.> !--- get

RE: xml output

2003-10-18 Thread Michael T. Tangorre
could you be a little more descriptive? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, October 18, 2003 2:07 PM To: CF-Talk Subject: xml output what would be the proper way to output this to xml? see below seems like ther is a tag u got to add

RE: xml output

2003-10-18 Thread cf
yes ok heres what im doing look at this guestbook http://www.ssql.net/Guestbook/Guestbook.htm they sent me the code but dont speak english told me what i can figure as good luck, lol heres some code, i put it on web to have smaller message here is the flash .as file that needs to recieve the xml

XML output from CF

2003-07-25 Thread Earl, George
We have an application that uses CF to query DB2 and Oracle and then massage the answer sets into pretty sophisticated reports that we display in MSIE (6.0). Some reports require landscape orientation for print. Users want to be able to print landscape reports without having to set the

RE: XML output from CF

2003-07-25 Thread s. isaac dealey
Hi George, My understanding is that generating the initial report in xml is going to be the most dynamic way to accomplish this. Which is a really vague statement, I know. :) So to elaborate a bit on what exactly I mean by dynamic. If you only plan to ever generate these sorts of reports from

RSS XML output

2003-07-23 Thread Mark Leder
Kind of a newbie at this. Assuming that I have an XML doc built from a cfquery, are there tutorials, examples, etc. out there which show how to bring in XML data into ASP pages, PHP pages, and even HTML docs? Make sense? Thanks, Mark

Using SQL 2000 XML Output

2003-02-26 Thread Jim Gurfein
Hi List, Need some help... I'm experimenting with XML query statements in SQL 2000 and have run into a problem that I can't figure out under CF 4.51. Here's the query: select top 2 name, city, state, zip from [restfile] Restaurant where city='rye' for xml auto,elements When I run the query in

XML output

2002-05-30 Thread Andres
I'm trying to output an xml page on IE. This is the code i'm using: cfcontent type=text/xml cfset xmlfeed=?xml version='1.0' ? xml ID='xmlorder' order order_info order_number12345678/order_number /order_info item

RE: XML output

2002-05-30 Thread Kevin Schmidt
Try enclosing your XML variable in the xmp tags IE cfoutputxmp#xmlfeed#/xmp/cfoutput -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 9:46 AM To: CF-Talk Subject: XML output I'm trying to output an xml page on IE. This is the code i'm using

Re: XML output

2002-05-30 Thread Zac Spitzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andres wrote: |I'm trying to output an xml page on IE. This is the code i'm using: |cfcontent type=text/xml |cfset xmlfeed=?xml version='1.0' ? |xml ID='xmlorder' |order |order_info |order_number12345678/order_number |

RE: XML output

2002-05-30 Thread Andres
, May 30, 2002 10:43 AM To: CF-Talk Subject: RE: XML output Try enclosing your XML variable in the xmp tags IE cfoutputxmp#xmlfeed#/xmp/cfoutput -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 9:46 AM To: CF-Talk Subject: XML output I'm trying

RE: XML output

2002-05-30 Thread James Maltby
Yup - your browser will only do this if it has the extension .xml -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 15:56 To: CF-Talk Subject: RE: XML output Thanks. It now displays on the browser, but as plain text. The browser still does

RE: XML output

2002-05-30 Thread Andres
: Thursday, May 30, 2002 10:55 AM To: CF-Talk Subject: RE: XML output Yup - your browser will only do this if it has the extension .xml -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 15:56 To: CF-Talk Subject: RE: XML output Thanks. It now displays

Re: XML output

2002-05-30 Thread Alex
More info needed but try ... save it as *.xml get rid of the cfset and cfcontent On Thu, 30 May 2002, Andres wrote: I'm trying to output an xml page on IE. This is the code i'm using: cfcontent type=text/xml cfset xmlfeed=?xml version='1.0' ? xml ID='xmlorder' order

RE: XML output

2002-05-30 Thread James Maltby
Then you may need to play with CFHEADER a bit then... But the format you are looking for will only work in IE browsers anyway... J -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 16:18 To: CF-Talk Subject: RE: XML output i'm not sure about

RE: XML output

2002-05-30 Thread Rob Baxter
Not sure it is the problem, but I didn't see an xml header... -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:18 AM To: CF-Talk Subject: RE: XML output i'm not sure about that... i've been using the samples given by SOXML v1.6 XML Interface

RE: XML output

2002-05-30 Thread Rob Baxter
oops, there it is. never mind... /rob -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 11:18 AM To: CF-Talk Subject: RE: XML output i'm not sure about that... i've been using the samples given by SOXML v1.6 XML Interface for Allaire's ColdFusion