本文介绍了获取SoapBody元素值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下是我从服务器获得的响应,
虽然我可以使用 MM7Version
元素值,但我无法获得状态
元素值。它返回null。
Here is the response I get from server, Although I can take the MM7Version
element value, I cannot get the Status
element value. it returns null.
SoapMeesage XML响应:
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Header>
<mm7:TransactionID SOAP-ENV:mustUnderstand="1" xmlns:mm7="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-2">TID.BIP_TRASNID.20041103.135200.001</mm7:TransactionID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<MM7Version>5.6.0</MM7Version>
<Status><StatusCode>2602</StatusCode><StatusText>Invalid status</StatusText></Status>
<MessageID></MessageID>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Java代码:
SOAPMessage response = connection.call(message, endpoint);
SOAPEnvelope env= response.getSOAPPart().getEnvelope();
SOAPBody sb = env.getBody();
Name ElName = env.createName("Status");
//Get child elements with the name XElement
Iterator it = sb.getChildElements(ElName);
//Get the first matched child element.
//We know there is only one.
SOAPBodyElement sbe = (SOAPBodyElement) it.next();
//Get the value for XElement
String MyValue = sbe.getValue();
System.out.println("MyValue: "+MyValue);
推荐答案
通过激励
private static MmsResponse getMmsResponse(SOAPMessage response) throws SOAPException {
MmsResponse mmsResponse = new MmsResponse();
Iterator itr=response.getSOAPBody().getChildElements();
while (itr.hasNext()) {
Node node=(Node)itr.next();
if (node.getNodeType()==Node.ELEMENT_NODE) {
Element ele=(Element)node;
switch (ele.getNodeName()) {
case "MM7Version":
mmsResponse.setMm7Version(ele.getTextContent());
break;
case "MessageID":
mmsResponse.setMessageID(ele.getTextContent());
break;
case "Status":
NodeList statusNodeList = ele.getChildNodes();
Status status = new Status();
for(int i=0;i<statusNodeList.getLength();i++){
Element statusElement = (Element) statusNodeList.item(i);
switch (statusElement.getNodeName()) {
case "StatusCode":
status.setStatusCode(ele.getChildNodes().item(i).getTextContent());
break;
case "StatusText":
status.setStatusText(ele.getChildNodes().item(i).getTextContent());
break;
default:
break;
}
}
mmsResponse.setStatus(status);
break;
default:
break;
}
} else if (node.getNodeType()==Node.TEXT_NODE) {
//do nothing here most likely, as the response nearly never has mixed content type
//this is just for your reference
}
}
这篇关于获取SoapBody元素值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!