How do I parse this XML string in Delphi 2009?

sevarba

New Member
This is the information that the XML string has. \[code\]<?xml version="1.0" encoding="UTF-8"?><string xmlns="http://tempuri.org/"><statusInfo><vendorClaimID>BRADY12478018AETNA</vendorClaimID><statusID>0</statusID><statusDescription>Unvalidated</statusDescription></statusInfo></string>\[/code\]But this is how it comes in.. You will have to scroll to the right to see all of it.\[code\]'<?xml version="1.0" encoding="utf-8"?>'#$D#$A'<string xmlns="http://tempuri.org/"><statusInfo><vendorClaimID>BRADY12478018AETNA</vendorClaimID><statusID>0</statusID><statusDescription>Unvalidated</statusDescription></statusInfo></string>'\[/code\]I have loaded the string into a XMLDoc, but don't know how to access the values easily from here..\[code\]vardoc: IXMLDocument;doc := LoadXMLData(xmlString);\[/code\]Thanks!
 
Back
Top