This is the information that the XML string has.
<?xml version="1.0" encoding="UTF-8"?>
<string xmlns="http://tempuri.org/">
<statusInfo><vendorClaimID>BRADY12478018AETNA</vendorClaimID>
<statusID>0</statusID><statusDescription>Unvalidated</statusDescription>
</statusInfo></string>
But this is how it comes in.. You will have to scroll to the right to see all of it.
'<?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>'
I have loaded the string into a XMLDoc, but don’t know how to access the values easily from here..
var
doc: IXMLDocument;
doc := LoadXMLData(xmlString);
Thanks!
You can use XPath to extract the values of the nodes
Check this sample