Changing XML structure in SOAP Handler
问题 I use Axis 1.4 and I want to insert an additional level within in the XML of a SOAP body within the client. There is a server response, which I can get with a subclass of javax.xml.rpc.handler.GenericHandler in the client: Now I try to recognize the right message type with SOAPMessageContext smc = (SOAPMessageContext) context; SOAPMessage message = smc.getMessage(); SOAPBody sb = message.getSOAPBody(); NodeList nl = sb.getElementsByTagName("projectDataReturn"); if (nl.getLength() == 0) {