Error received (sometimes) when using <cfxml> tag
I have a problem when using the <cfxml> tag, its seems to error when I try and display xml code over a certain length, as it works for some of my records and not others. Is there a known sizing limit when displaying stuff within the cfxml tag ?
Here is my code, I am un-sure as to how to progress with this issue. Any help would be much apprciated.
<cflayout type="tab">
<cflayoutarea title="Application XML">
<cfoutput>
<cftry>
<cfxml variable="MyXMLDoc" casesensitive="yes">
#getAppReqHeader.application_xml#
</cfxml>
<cfdump var="#MyXMLDoc#">
<cfcatch>
<br /><br />
<div style="margin-left:5px;color:gray">Error displaying xml.</div><br/>
</cfcatch>
</cftry>
</cfoutput>
</cflayoutarea>
</cflayout>
