say i have an xml node like

<class property1="blah" />

what's the easiest way to convert that to:

myClass = new class();
myClass.property1 = "blah";

i've seen it done with regular objects and VO's just by casting, but not
with XML.

this is dynamic in nature, so I'm wondering how i can convert the xml data
to instantiated classes, any ideas?

thanks,
d.

Reply via email to