In some cases we need to access the incoming requests' properties/message in the outpath/response path.
For instance; we may need the request message's header information or else we might need the request message in the response path for any processing logic.
Request message context can be retrieved like as follows;
Using the Request's MessageContext we could retrieve header details/message etc..
For instance; we may need the request message's header information or else we might need the request message in the response path for any processing logic.
Request message context can be retrieved like as follows;
MessageContext requestMessageCtx = responseMessageCtx.getOperationContext()
.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE);
are you aware of onFault() method configuration in axis1, details: http://stackoverflow.com/questions/19654836/axis1-fault-flow-configuration
ReplyDelete