Package org.apache.axis2.rpc.receivers
Class RPCMessageReceiver
java.lang.Object
org.apache.axis2.receivers.AbstractMessageReceiver
org.apache.axis2.receivers.AbstractInOutMessageReceiver
org.apache.axis2.rpc.receivers.RPCMessageReceiver
- All Implemented Interfaces:
org.apache.axis2.engine.MessageReceiver
- Direct Known Subclasses:
EJB3MessageReceiver,EJBInOutAsyncMessageReceiver,EJBMessageReceiver
public class RPCMessageReceiver
extends org.apache.axis2.receivers.AbstractInOutMessageReceiver
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
org.apache.axis2.receivers.AbstractMessageReceiver.AsyncMessageReceiverWorker -
Field Summary
Fields inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
DO_ASYNC, SAVED_MC, SAVED_TCCL, SCOPE, serviceTCCL -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinvokeBusinessLogic(org.apache.axis2.context.MessageContext inMessage, org.apache.axis2.context.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 forMethods inherited from class org.apache.axis2.receivers.AbstractInOutMessageReceiver
invokeBusinessLogicMethods inherited from class org.apache.axis2.receivers.AbstractMessageReceiver
getSOAPFactory, getTheImplementationObject, makeNewServiceObject, receive, replicateState, restoreThreadContext
-
Constructor Details
-
RPCMessageReceiver
public RPCMessageReceiver()
-
-
Method Details
-
invokeBusinessLogic
public void invokeBusinessLogic(org.apache.axis2.context.MessageContext inMessage, org.apache.axis2.context.MessageContext outMessage) throws org.apache.axis2.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 <soap:body>- Specified by:
invokeBusinessLogicin classorg.apache.axis2.receivers.AbstractInOutMessageReceiver- Parameters:
inMessage- incoming MessageContextoutMessage- outgoing MessageContext- Throws:
org.apache.axis2.AxisFault
-