How to remove dt:dt="string" from the below xml in the respective nodes? What
API must be used.
<?xml version="1.0"?>
<Root xmlns:dt="urn:s chemas-microsoft-com:datatypes" Version="1">
<VERSION dt:dt="string"> Default</VERSION>
<NO dt:dt="string"> Default</NO>
<SERIA dt:dt="string"> Default</SERIAL>
<TIME dt:dt="dateTime ">2006-10-30T16:57:32</TIME>
</Root>
Is it a attribute ? I want to remove dt:dt="string" using DOM in C++ is that possible?
API must be used.
<?xml version="1.0"?>
<Root xmlns:dt="urn:s chemas-microsoft-com:datatypes" Version="1">
<VERSION dt:dt="string"> Default</VERSION>
<NO dt:dt="string"> Default</NO>
<SERIA dt:dt="string"> Default</SERIAL>
<TIME dt:dt="dateTime ">2006-10-30T16:57:32</TIME>
</Root>
Is it a attribute ? I want to remove dt:dt="string" using DOM in C++ is that possible?