How do I load an XML formatted string into the DOM?

wxdqz

New Member
I am not using Internet Explorer 5.0 for my development. I have an appletrunning that sends data to me in an XML formatted string. How do I get thisstring loaded into the DOM?I know that using IE 5.0 you can do the following:var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");xmlDoc.loadXML(xmlString); // which loads the stringUnfortunately, I am using an IceStorm Browser and I get an error thatsays "ActiveXObject" is not defined.The DOM document doesn't really tell you how to load XML into the DOM. Inmy case, I am not even trying to load in a file. I just have XML formattedtext.Does anyone have any ideas? Thanks!
 
Back
Top