| java.lang.Object com.nabhinc.ws.soap.MsgProvider
MsgProvider | public class MsgProvider (Code) | | Deal with message-style Java services. For now, these are services
with exactly ONE OperationDesc, pointing to a method which looks like
one of the following:
public Element [] method(Vector v);
(NOTE : This is silly, we should change it to either be Vector/Vector
or Element[]/Element[])
public Document method(Document doc);
public void method(MessageContext mc);
author: Doug Davis (dug@us.ibm.com) author: Glen Daniels (gdaniels@apache.org) |
processMessage | public void processMessage(MessageContext msgContext, SOAPEnvelope reqEnv, SOAPEnvelope resEnv, RequestInfo reqInfo, InterceptorChain chain) throws Throwable(Code) | | Process the message. Figure out the method "style" (one of the three
allowed signatures, which has already been determined and cached in
the OperationDesc) and do the actual invocation. Note that we don't
catch exceptions here, preferring to bubble them right up through to
someone who'll catch it above us.
Parameters: msgContext - the active MessageContext Parameters: reqEnv - the request SOAPEnvelope Parameters: resEnv - the response SOAPEnvelope (we should fill this in) Parameters: obj - the service target object throws: Exception - |
|
|