On 11/12/06, Mike Kear <[EMAIL PROTECTED]> wrote: > [quote] > javax.xml.transform.TransformerConfigurationException: > javax.xml.transform.TransformerException: > org.xml.sax.SAXParseException: Content is not allowed in prolog. > [/quote] > > I've checked all the obvious things - looked for files that have > changed as the possible cause of the issue, configuratoin changes in > the site etc and nothing on the site has changes in a way that might > cause this.
This error is typically seen when text, whitespace or control characters precede the XML declaration. I don't know how this is applied in forms, exactly, but I can think of at least one thing to look for. If you have a DevNet edition of ColdFusion then look for the existence of a <meta> tag telling you just that. It is inserted by the application server and has a nasty habit of breaking XML because of where it's inserted: if there's a <head> element then it's appended to that, but if there's not - as is the case for most XML docs - then it's just inserted at the top of the file. Maybe that's coming into play... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260093 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

