Is this supposed to convert attributes of an XML element to an XML node?
I.E. From:
Code:
<VehicleAttribute type="VehicleType" typeid="12" value="Truck" valueid="4673" />
To:
Code:
<VehicleAttribute>
<type>VehicleType</type>
<typeid>12</typeid>
<value>Truck</value>
<valueid>4673</valueid>
</VehicleAttribute>
(it doesn't seem to do anything. the above is what I'm looking for)