Getting Method Signature Name form a SOAPMessage on JAX-WS?

I'm not sure that I understand your question, however.

I'm not sure that I understand your question, however: if you're processing the soap message as part of a handler, you can get the service and operation being invoked from the SOAPMessageContext: QName svcn = (QName) context. Get(MessageContext. WSDL_SERVICE); svcn.getLocalPart(); QName opn = (QName) context.

Get(MessageContext. WSDL_OPERATION); opn.getLocalPart(); if you just want to deal with SOAPMessage in your client code, and want to know what element is contained in the SOAP Body: msg.getSOAPBody().getFirstChild().getLocalName() The SOAPMessage exposes each part of the envilope as a DOM object, so you can do normal "DOM"ish things with it.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions