if you use xmlparse on it, you get back the cf xml object which is pretty much a big old struct of arrays of structs of arrays (and so on).
you could probably write something that recursed through and generated true structs of arrays of structs of arrays, but i doubt it'd be worth it, and all you'd really end up getting out of that would be not having to use ".xmltext" to get at the value of struct keys, and maybe not having to use ".xmlchildren". the other significant benefit of going the xmlparse route is that then you can run xpaths on it, which is often what you want to do when you have big xml data anyway. good luck Baz. marc On Sat, May 9, 2009 at 5:16 PM, Baz <[email protected]> wrote: > I am invoking a public webservice that returns a big hairy xml. Can anyone > recommend a good project or way of transforming that into pretty cf > objects/arrays/structs? > > Cheers, > Baz > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CFCDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cfcdev?hl=en -~----------~----~----~----~------~----~------~--~---
