Package org.apache.axis2.rpc.receivers
Class RPCInOutAsyncMessageReceiver
- java.lang.Object
-
- org.apache.axis2.receivers.AbstractMessageReceiver
-
- org.apache.axis2.rpc.receivers.RPCInOutAsyncMessageReceiver
-
- All Implemented Interfaces:
MessageReceiver
public class RPCInOutAsyncMessageReceiver extends AbstractMessageReceiver
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
AbstractMessageReceiver.AsyncMessageReceiverWorker
-
-
Field Summary
-
Fields inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
DO_ASYNC, SAVED_MC, SAVED_TCCL, SCOPE, serviceTCCL
-
-
Constructor Summary
Constructors Constructor Description RPCInOutAsyncMessageReceiver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
invokeBusinessLogic(MessageContext messageCtx)
Do the actual work of the MessageReceiver.void
invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage)
reflect and get the Java method - for each i'th param in the java method - get the first child's i'th child -if the elem has an xsi:type attr then find the deserializer for it - if not found, lookup deser for th i'th param (java type) - error if not found - deserialize & save in an object array - end for-
Methods inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
getSOAPFactory, getTheImplementationObject, makeNewServiceObject, receive, replicateState, restoreThreadContext
-
-
-
-
Method Detail
-
invokeBusinessLogic
public void invokeBusinessLogic(MessageContext inMessage, MessageContext outMessage) throws AxisFault
reflect and get the Java method - for each i'th param in the java method - get the first child's i'th child -if the elem has an xsi:type attr then find the deserializer for it - if not found, lookup deser for th i'th param (java type) - error if not found - deserialize & save in an object array - end for - invoke method and get the return value - look up serializer for return value based on the value and type - create response msg and add return value as grand child of- Parameters:
inMessage
-outMessage
-- Throws:
AxisFault
-
invokeBusinessLogic
protected void invokeBusinessLogic(MessageContext messageCtx) throws AxisFault
Description copied from class:AbstractMessageReceiver
Do the actual work of the MessageReceiver. Must be overridden by concrete subclasses.- Specified by:
invokeBusinessLogic
in classAbstractMessageReceiver
- Parameters:
messageCtx
- active MessageContext- Throws:
AxisFault
- if a problem occurred
-
-