May not be exactly the same problem, but I ran into this when using Amazon's web services:
<!--- Set response ---> <CFSET objDOM = objServerXMLHttp.responseXML> <!--- SOXML chokes on the xmlns stuff, so I just strip it out ---> <CFSET mutant = "xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:noNamespaceSchemaLocation=""http://xml.amazon.com/schemas/dev-lite.xsd"""> <CFSET newxml = ReplaceNoCase(objDOM.xml,mutant,'')> <!--- Transform XML response to CF structure ---> <cf_SOXML action="XML2CF" encoding="UTF-8" input="#newxml#" output="AmazonResponse"> > Okay,we have been using soxml to return the content from UPS to a cf > usable format. Apparently this morning, they started sending everything > with UTF-8 encoding in the xml doc. This makes action=XML2CF puke with > an encoding error. Can anyone please point me to a workaround or how > its been dealt with in your experience? > > Regards, > > Eric J Hoffman > DataStream Connexion > www.datastreamconnexion.com > Delivering Creative Data Solutions > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

