> An invalid XML character (Unicode: 0x1c) was found in the CDATA section.
Here is a regex I use to "clean" my xml of any funky characters: <cfset newxml = rereplace(oldxml, "[\x00-\x1f]", " ", "All")> Then you should probably still CDATA newxml to escape the regular bad xml characters. -- Josh ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIAâs for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274715 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

