i have to read the nodes of this XML and store in variables, i can either use XDocument or XmlDocument, how can i accomplish this? the structure is quite complex, i don't how should i iterate over the elements..Thank you in advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Laxmidhar SahooPosted Nov 19, 2018, 9:48 PM
Joao ScoobPosted Nov 19, 2018, 9:41 AM
foreach(XmlNode xnode in getRoot.ChildNodes)
{
}
nsmgr.AddNamespace("csdb", "http://site.de/csadb");
XmlNodeList AuthNodes = doc.SelectNodes("soapenv:Envelope/soapenv:Header/soapenv:Body/csadb:AP_002_CreateDocument/csadb:AP_015_Request/csadb:Header/csadb:AuthData/", nsmgr);
Laxmidhar SahooPosted Nov 18, 2018, 10:26 PM
Jignesh KumarPosted Nov 18, 2018, 9:54 PM