当前页面:
在线文档首页 >
JBoss 3.2.7 jaxrpc API Documentation 英文版文档
MsgProvider (JAXRPC API) - JBoss 3.2.7 jaxrpc API Documentation 英文版文档
org.apache.axis.providers.java
Class MsgProvider
java.lang.Object
org.apache.axis.handlers.BasicHandler
org.apache.axis.providers.BasicProvider
org.apache.axis.providers.java.JavaProvider
org.apache.axis.providers.java.MsgProvider
- All Implemented Interfaces:
- Handler, Serializable
- public class MsgProvider
- extends JavaProvider
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), Glen Daniels (gdaniels@apache.org)
- See Also:
- Serialized Form
Methods inherited from class org.apache.axis.handlers.BasicHandler |
canHandleBlock, cleanup, getDeploymentData, getName, getOption, getOptions, getUnderstoodHeaders, init, initHashtable, onFault, setName, setOption, setOptionDefault, setOptions, setOptionsLockable |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MsgProvider
public MsgProvider()
processMessage
public void processMessage(MessageContext msgContext,
SOAPEnvelopeAxisImpl reqEnv,
SOAPEnvelopeAxisImpl resEnv,
Object obj)
throws Exception
- 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.
- Specified by:
processMessage
in class JavaProvider
- Parameters:
msgContext
- the active MessageContextreqEnv
- the request SOAPEnveloperesEnv
- the response SOAPEnvelope (we should fill this in)obj
- the service target object
- Throws:
Exception
Copyright © 2002 JBoss Group, LLC. All Rights Reserved.