簡體   English   中英

解析SOAP響應返回null

[英]Parsing a SOAP response is returning null

String response = "<?xml version='1.0'?><soap:Envelope xmlns:soap='http://www.w3.org/2003/05/soap-envelope'><soap:Body><exch:Response xmlns:exch='http://applicant.ffe.org/exchange/1.0'>...</exch:Response></soap:Body></soap:Envelope>";

DocumentBuilderFactory dbf = null;
DocumentBuilder db = null;
org.w3c.dom.Document document = null;
try {
   dbf = DocumentBuilderFactory.newInstance();
   db = dbf.newDocumentBuilder();
   InputSource is = new InputSource(new ByteArrayInputStream(response.getBytes("UTF-8")));
   document = db.parse(is);

 } catch(ParserConfigurationException e){}
   catch(SAXException e){}

文檔返回null。 我嘗試了多種方法傳遞給InputSource,但是文檔仍返回null。 知道為什么會這樣嗎?

我只是試着可以得到元素的名稱和值。

        try {
                   dbf = DocumentBuilderFactory.newInstance();
                   db = dbf.newDocumentBuilder();
                   InputSource is = new InputSource(new ByteArrayInputStream(response.getBytes("UTF-8")));
                   document = db.parse(is);
                   System.out.println(document);//here we get null;
                       System.out.println(document.getNodeName());//here we get document;
                      for(int i =0 ; i<document.getChildNodes().getLength();i++)
                   System.out.println(document.getChildNodes().item(i).getChildNodes().item(i).getNodeName());
                }


    Output :

    [#document: null]
    document
    soap:Body

要解析SOAPResponse,我們可以javax.xml.soap.*可能需要u遍歷對象xml樹。 無論如何,我們可能需要解析SOAP Body中的元素。 我們可以使用DOM格式解析這些非常簡單的方式。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM