Hi All,
I'm suspecting the answer to this is use eXTC, but I have to ask anyway. I have various XML's that I really don't want to create objects for and I'm not very comfortable with XPath, as such is there a way to correlate an XML to a none existent object?, and use the properties it creates on the fly?
For example
<XML>
<Items>
<Item>
<Name>Name1</Name>
<Description>Desc for Name1</Description>
</Item>
<Item>
<Name>Name2</Name>
<Description>Desc for Name2</Description>
<Something1>Value for Something1</Something1>
</Items>
</XML>
I then want to have an object after an XML.Reader that contains obj.Name, obj.Description and for the second one object.Something1, but I don't want to create a class with properties, this data in the "object" will never get saved and so I'm not worried about storage, is this easily possible or am I damned to work out XPath?
Regards