The org.apache.axis2.jaxws.core.MessageContext is an interface that extends the
JAX-WS 2.0 javax.xml.ws.handler.MessageContext defined in the spec. This
encapsulates all of the functionality needed of the MessageContext for the other JAX-WS spec
pieces (the handlers for example) and also provides the needed bits of contextual information for
the rest of the JAX-WS implementation.
Specifically, this is responsible for providing APIs so that the client and server implementation
portions can get to the Message, defined by the Message Model format and also any metadata that
is available.
getLocalException() The local exception is the Throwable object held on the Message from a problem that occurred
due to something other than the server.
setLocalException(Throwable t) The local exception is the Throwable object held on the Message from a problem that occurred
due to something other than the server.
The local exception is the Throwable object held on the Message from a problem that occurred
due to something other than the server. In other words, no message ever travelled across
the wire.
the Throwable object or null
The local exception is the Throwable object held on the Message from a problem that occurred
due to something other than the server. In other words, no message ever travelled across the
wire.
Parameters: t - See Also:Throwable
Set the wrapper MEPContext. Internally, this method also sets
the MEPContext's children so the pointer is bi-directional; you can
get the MEPContext from the MessageContext and vice-versa.
Parameters: mepCtx -