Posted By:
soumya_j
Posted On:
Tuesday, November 27, 2001 10:52 PM
U can build a document from string XML like this
DOMParser objDOMParser=new DOMParser();
/* Parse the XML */
objDOMParser.parse(new InputSource(
new StringReader(strResponseXML)));
/* Get the Document from the DOMParser */
objDOMParser.getDocument();