How to get the value of a single element from a SOAP response? (Java)

Aromyroirumma

New Member
I want to get the "SearchResult" value from the following InputStream: \[code\]HTTP/1.1 200 OKContent-Type: application/soap+xml; charset=utf-8Content-Length: length<?xml version="1.0" encoding="utf-8"?><soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <SearchResponse xmlns="http://www.e-imo.com/"> <SearchResult>[THIS VALUE HERE]</SearchResult> </SearchResponse> </soap12:Body></soap12:Envelope>\[/code\]I've been trying to use a DOM parser but am having trouble, and am not sure if it is the right approach anyway:\[code\]DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();DocumentBuilder db;Document doc = null;db = factory.newDocumentBuilder();InputSource inStream = new InputSource();inStream.setCharacterStream(new StringReader(soapResponse));doc = db.parse(inStream); NodeList nl = doc.getElementsByTagName("SearchResult");//Not sure how to get the value... Everything I've tried returned "null". Help?\[/code\]How can I do this?
 
Back
Top