marquee.xmlrpc.objectcomm
Class CallWrapper

java.lang.Object
  extended by marquee.xmlrpc.objectcomm.CallWrapper
All Implemented Interfaces:
java.io.Serializable

public class CallWrapper
extends java.lang.Object
implements java.io.Serializable

When invoking methods on a server, the server has to be able to reflectively identify which method is intended with the call, given the XML-RPC message. Normally, this is done by just interpreting the types of the params in the message. This will work in most situations. However, to support null values this has to be taken further. This has been solved by encapsulating every call in a single call wrapper containing type information on all arguments including null arguments.

Since:
JDK 1.3
Version:
$Revision: 1.2 $
Author:
Rainer Bischof (rainer.bischof@eds.com)
See Also:
Serialized Form

Constructor Summary
CallWrapper()
          The buildCallWrapper() method is the proper way to acquire CallWrappers.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CallWrapper

public CallWrapper()
The buildCallWrapper() method is the proper way to acquire CallWrappers.