I'm wanting to read the neo-datasources.xml file and loop through the
datasources. So I do a CFFILE TYPE="READ" and got the content, and did
xmlparse() to create the XML object. But then I'm stuck - CFDUMP shows me a
structure inside an array inside "wddx encoded". I can't figure the structure
syntax to get past "wddx encoded" and drill down into it to get to the data.
Can someone point me in the right direction? Thanks.
Grizzly9279 - 13 Sep 2007 22:35 GMT
You should be able to use the <cfwddx> tag to get at it.
Example:
<cfwddx action="wddx2cfml" input="#wddxVar#" output="outputVar">
rgurganus - 14 Sep 2007 14:25 GMT
Thanks. It's good to know some problems have easy solutions.