Uses of Class
com.flat502.rox.marshal.MethodCallUnmarshallerAid

Packages that use MethodCallUnmarshallerAid
com.flat502.rox.demo Examples illustrating using this project. 
com.flat502.rox.marshal Provides generic classes for marshalling and unmarshalling RPC messages. 
com.flat502.rox.marshal.cgi   
com.flat502.rox.marshal.xmlrpc Provides classes for marshalling and unmarshalling XML-RPC messages. 
com.flat502.rox.server Server-side API and supporting classes. 
 

Uses of MethodCallUnmarshallerAid in com.flat502.rox.demo
 

Subclasses of MethodCallUnmarshallerAid in com.flat502.rox.demo
 class RMIAsyncServerDemo
          A demo server illustrating the ProxyingRequestHandler class.
 

Uses of MethodCallUnmarshallerAid in com.flat502.rox.marshal
 

Subclasses of MethodCallUnmarshallerAid in com.flat502.rox.marshal
 class ArrayParameterTypeMapper
          An implementation of MethodCallUnmarshallerAid that maps a parameter index into a given array of Class instances.
 

Methods in com.flat502.rox.marshal with parameters of type MethodCallUnmarshallerAid
 RpcCall MethodCallUnmarshaller.unmarshal(java.io.InputStream in, MethodCallUnmarshallerAid aid)
          Unmarshal an RpcCall instance from an InputStream.
 RpcCall MethodCallUnmarshaller.unmarshal(java.io.Reader in, MethodCallUnmarshallerAid aid)
          Unmarshal an RpcCall instance from a Reader.
 RpcCall MethodCallUnmarshaller.unmarshal(java.lang.String xml, MethodCallUnmarshallerAid aid)
          Unmarshal an RpcCall instance from an XML string.
 

Uses of MethodCallUnmarshallerAid in com.flat502.rox.marshal.cgi
 

Methods in com.flat502.rox.marshal.cgi with parameters of type MethodCallUnmarshallerAid
 RpcCall CgiMethodCallUnmarshaller.unmarshal(MethodCallURI uri, MethodCallUnmarshallerAid aid)
           
 

Uses of MethodCallUnmarshallerAid in com.flat502.rox.marshal.xmlrpc
 

Methods in com.flat502.rox.marshal.xmlrpc with parameters of type MethodCallUnmarshallerAid
 void SaxUnmarshaller.setCallAid(MethodCallUnmarshallerAid callAid)
           
protected  RpcCall SaxMethodCallUnmarshaller.unmarshal(org.xml.sax.InputSource in, MethodCallUnmarshallerAid aid)
           
 RpcCall SaxMethodCallUnmarshaller.unmarshal(java.io.InputStream in, MethodCallUnmarshallerAid aid)
           
 RpcCall DomMethodCallUnmarshaller.unmarshal(java.io.InputStream in, MethodCallUnmarshallerAid aid)
           
 RpcCall SaxMethodCallUnmarshaller.unmarshal(java.io.Reader in, MethodCallUnmarshallerAid aid)
           
 RpcCall DomMethodCallUnmarshaller.unmarshal(java.io.Reader in, MethodCallUnmarshallerAid aid)
           
 RpcCall SaxMethodCallUnmarshaller.unmarshal(java.lang.String xml, MethodCallUnmarshallerAid aid)
           
 RpcCall DomMethodCallUnmarshaller.unmarshal(java.lang.String xml, MethodCallUnmarshallerAid aid)
           
 

Uses of MethodCallUnmarshallerAid in com.flat502.rox.server
 

Subclasses of MethodCallUnmarshallerAid in com.flat502.rox.server
 class ProxyingRequestHandler
          A SynchronousRequestHandler implementation that maps RPC method calls onto methods on an arbitrary object using reflection.
 class RpcMethodProxy
          This class dynamically proxies a plain old Java object (POJO) by mapping RPC method calls onto methods onto a target object using reflection.
 class XmlRpcMethodProxy
          This is a specialization of RpcMethodProxy that creates objects that cater for XML-RPC.
 class XmlRpcProxyingRequestHandler
          A ProxyingRequestHandler implementation specialized for XML-RPC.
 

Methods in com.flat502.rox.server with parameters of type MethodCallUnmarshallerAid
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, AsynchronousRequestHandler handler, MethodCallUnmarshallerAid aid)
          Register an asynchronous XML-RPC method call handler.
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, AsyncRequestHandler handler, MethodCallUnmarshallerAid aid)
          Deprecated. Use HttpRpcServer.registerHandler(String, String, AsynchronousRequestHandler, MethodCallUnmarshallerAid) instead.
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, SynchronousRequestHandler handler, MethodCallUnmarshallerAid aid)
          Register a synchronous XML-RPC method call handler.
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, SyncRequestHandler handler, MethodCallUnmarshallerAid aid)
          Deprecated. Use HttpRpcServer.registerHandler(String, String, SynchronousRequestHandler, MethodCallUnmarshallerAid) instead.
 RpcCall XmlRpcRequestUnmarshaller.unmarshal(HttpRequestBuffer request, MethodCallUnmarshallerAid aid)
           
abstract  RpcCall HttpRequestUnmarshaller.unmarshal(HttpRequestBuffer request, MethodCallUnmarshallerAid aid)
           
 RpcCall CgiRequestUnmarshaller.unmarshal(HttpRequestBuffer request, MethodCallUnmarshallerAid aid)