I have a program that is reading xml from a file that has worked until today. It turns out that the file that I am now reading has changed the xml format to use : in the tag names.
<pv:MsgHdr>
<pvealerCode>444</pvealerCode>
<pv:AcctNbr>TESTDMS00000001</pv:AcctNbr>
</pv:MsgHdr>
im using XMLDocument.LoadXML(stream) to read it and i get an error.
is there a newer xml parser that can read this?
<pv:MsgHdr>
<pvealerCode>444</pvealerCode>
<pv:AcctNbr>TESTDMS00000001</pv:AcctNbr>
</pv:MsgHdr>
im using XMLDocument.LoadXML(stream) to read it and i get an error.
is there a newer xml parser that can read this?