代码之家  ›  专栏  ›  技术社区  ›  deepakl

SOAPMessage。getMessageBody()打印空值

  •  0
  • deepakl  · 技术社区  · 7 年前

    String example="<SOAP:Envelope 
    xmlns:SOAP=\"http://schemas.xmlsoap.org/soap/envelope/\">"
        + "<SOAP:Body>"        
        + "<firstName>Jane</firstName>"
        + "<lastName>Doe</lastName>"        
        + "</SOAP:Body>"
        + "</SOAP:Envelope>";
    
    ByteArrayInputStream  bas=new ByteArrayInputStream(example.getBytes());
    
    try {
      SOAPMessage message = MessageFactory.newInstance().createMessage(null,bas);
      System.out.println(message.getSOAPBody().toString());
      JAXBContext jc = JAXBContext.newInstance(Person.class);
      Unmarshaller unmarshaller = jc.createUnmarshaller();
    
      System.out.println(message.getSOAPBody()); // this prints null
      System.out.println(message.getSOAPBody().toString()); // this prints null
      JAXBElement<Person> jb = unmarshaller.unmarshal(message.getSOAPBody(), Person.class); // I am not able to undestand if above lines return null, then how come this line populates jb
    
      Person p = jb.getValue();
      System.out.println(p.firstName); // prints Jane
      System.out.println(p.lastName); // prints Doe
    } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    } catch (SOAPException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    
    1 回复  |  直到 7 年前
        1
  •  1
  •   Ritesh K    7 年前

    以下是程序的输出:

    [SOAP:Body: null]
    [SOAP:Body: null]
    [SOAP:Body: null]
    Jane
    Doe
    

    您正在检查错误的方法,应该尝试更改消息。getSOAPBody()。toString()到message.getSOAPBody()。getTextContent()或getChildNodes()等来验证消息内容。

    [SOAP:Body: null]
    [SOAP:Body: null]
    JaneDoe
    Jane
    Doe