Uses of Interface
marquee.xmlrpc.XmlRpcInvocationProcessor

Packages that use XmlRpcInvocationProcessor
marquee.xmlrpc   
marquee.xmlrpc.processors   
 

Uses of XmlRpcInvocationProcessor in marquee.xmlrpc
 

Methods in marquee.xmlrpc that return XmlRpcInvocationProcessor
 XmlRpcInvocationProcessor XmlRpcServer.getInvocationProcessor(int index)
          
 

Methods in marquee.xmlrpc with parameters of type XmlRpcInvocationProcessor
 void XmlRpcServer.registerInvocationProcessor(XmlRpcInvocationProcessor processor)
          Invocation processors are invoked on every call, regardless of which handler or method the call is intended for.
 void XmlRpcServer.unregisterInvocationProcessor(XmlRpcInvocationProcessor processor)
          Removes a previously registered invocation processor.
 

Uses of XmlRpcInvocationProcessor in marquee.xmlrpc.processors
 

Classes in marquee.xmlrpc.processors that implement XmlRpcInvocationProcessor
 class AllowInvocationProcessor
           
 class DebugInvocationProcessor
          Simple invocation processor that traces the calls made through an XmlRpcServer.
 class FilterInvocationProcessor
          A sample processor that allows invocations to be filtered out based on the IP address of the caller and, optionally, a handler.
 class SessionInvocationProcessor
          The SessionProcessor allows invocation handlers to store client state in session objects between invocations.