Hi guy's, I am well and truly stuck as to why the following code will not load xml into my xmlDocument variable from a string.
I have triple checked that stringXML has the value that I am expecting, which is a text string.Code:var stringXML = request.responseText; var xmlDocument = new Windows.Data.Xml.Dom.XmlDocument(); xmlDocument.loadXml(stringXML);
This is a javascript html css metro style application. I just don't see why the loadXml function is not populating my xmlDocumet varable with the contents of stringXML. Also I have check the contents of the xmlDocument variable after loadXml has run and it is empty, I also find it weird that I don't get any errors.
Best Regards, Antony.


Reply With Quote