简体   繁体   中英

Get Value from SOAP response

I have such a line:

SOAPMessage soapResponse = soapConnection.call(message, url);

and response looks:

HTTP/1.1 200 OK
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Wed, 24 Jul 2013 07:44:39 GMT
Server: Apache-Coyote/1.1

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Header>
  <TransactionID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="1" xmlns="http://somelink"></TransactionID>
 </soapenv:Header>
 <soapenv:Body>
  <soap-env:Fault xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
   <soap-env:faultcode>Server</soap-env:faultcode>
   <soap-env:faultstring>Server Error</soap-env:faultstring>
   <soap-env:Detail>
    <soap-env:Status>
     <soap-env:StatusCode>3000</soap-env:StatusCode>
     <soap-env:StatusText>Server Error</soap-env:StatusText>
     <soap-env:Details></soap-env:Details>
    </soap-env:Status>
   </soap-env:Detail>
  </soap-env:Fault>
 </soapenv:Body>
</soapenv:Envelope>

how can i get StatusCode (3000) in String from such a soap response? i tried soapResponse.getSOAPBody().... but all i could get was :status

EDIT:

so i did:

  Detail detail = soapResponse.getSOAPPart().getEnvelope().getBody().getFault().getDetail();
 Iterator detailEntries = detail.getDetailEntries();
 while (detailEntries.hasNext()) {
     SOAPBodyElement bodyElement = (SOAPBodyElement) detailEntries.next();
     Iterator val = bodyElement.getChildElements();
     while (val.hasNext()) {
         SOAPBodyElement bodyElement2 = (SOAPBodyElement) val.next();
         String val2 = bodyElement2.getValue();
         logger.debug("The Value is:" + val2);
     }

but got class cast exception } Edit2: Solution:

soapResponse.getSOAPPart().getEnvelope().getBody().getFault().getDetail().getTextContent().trim().substring(0, 4));
soapResponse.getBody().getFault().getFaultCode()

http://docs.oracle.com/javaee/5/api/javax/xml/soap/SOAPFault.html#getFaultCode()

and iterate on : 

soapResponse.getBody().getFault().getDetailEntries()

http://docs.oracle.com/javaee/5/api/javax/xml/soap/Detail.html#getDetailEntries()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM