I have a class that implements the SOAPHandler interface. The handleMessage is defined as:
public boolean handleMessage(SOAPMessageContext context) {
SOAPMessage msg = context.getMessage();
SOAPPart part = msg.getSOAPPart();
SOAPEnvelope envelope = part.getEnvelope();
// add namespaces
SOAPElement envelope.addNamespaceDecla...
This is related to a previous question. I've pulled out the main problem as I've updated much of the code but I still have an issue. How can I have a custom SOAPHandler class add a new element to a SOAP message? I need to add a username and password to the message. If I use:
public boolean handleMessage(SOAPMessageContext context) {...
Hi!
I wrote a handler (javax.xml.rpc.handler.Handler) for a SOAP web service that inspects header data. How can I modify the response message when the method handleFault is invoked?
public class SeguridadHandler implements javax.xml.rpc.handler.Handler {
...
public boolean handleFault(MessageContext context) {
// modify ...
I am using JAX-WS for creating my API. I have implemented SOAPHandler for the web-service. Now can i use that same handler for other web-services which needs the same functionality?
If yes, can it create any issue when many web-services are being accessed at a time.
...