Uses of Interface
com.flat502.rox.server.RequestHandler

Packages that use RequestHandler
com.flat502.rox.demo Examples illustrating using this project. 
com.flat502.rox.server Server-side API and supporting classes. 
 

Uses of RequestHandler in com.flat502.rox.demo
 

Classes in com.flat502.rox.demo that implement RequestHandler
 class AsyncServerDemo
          A demo asynchronous server illustrating the AsynchronousRequestHandler interface.
 class CgiServerDemo
          A demo synchronous server illustrating the HttpRpcServer.registerRequestUnmarshaller(String, HttpRequestUnmarshaller) method.
 class RMIAsyncServerDemo
          A demo server illustrating the ProxyingRequestHandler class.
 class SSLServerDemo
          A demo synchronous server illustrating the SynchronousRequestHandler interface using SSL.
 class SyncServerDemo
          A demo synchronous server illustrating the SynchronousRequestHandler interface.
 

Uses of RequestHandler in com.flat502.rox.server
 

Subinterfaces of RequestHandler in com.flat502.rox.server
 interface AsynchronousRequestHandler
          Interface for asynchronous RPC method call handlers.
 interface AsyncRequestHandler
          Deprecated. Use AsynchronousRequestHandler instead.
 interface SynchronousRequestHandler
          Interface for synchronous RPC method call handlers.
 interface SyncRequestHandler
          Deprecated. Use SynchronousRequestHandler instead.
 

Classes in com.flat502.rox.server that implement RequestHandler
 class ProxyingRequestHandler
          A SynchronousRequestHandler implementation that maps RPC method calls onto methods on an arbitrary object using reflection.
 class XmlRpcProxyingRequestHandler
          A ProxyingRequestHandler implementation specialized for XML-RPC.
 

Methods in com.flat502.rox.server that return RequestHandler
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, AsynchronousRequestHandler handler)
          Register an asynchronous XML-RPC method call handler.
 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)
          Deprecated. Use HttpRpcServer.registerHandler(String, String, AsynchronousRequestHandler) instead.
 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)
          Register a synchronous XML-RPC method call handler.
 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)
          Deprecated. Use HttpRpcServer.registerHandler(String, String, SynchronousRequestHandler) instead.
 RequestHandler HttpRpcServer.registerHandler(java.lang.String uriPath, java.lang.String method, SyncRequestHandler handler, MethodCallUnmarshallerAid aid)
          Deprecated. Use HttpRpcServer.registerHandler(String, String, SynchronousRequestHandler, MethodCallUnmarshallerAid) instead.
 RequestHandler XmlRpcServer.registerProxyingHandler(java.lang.String uri, java.lang.String method, java.lang.Object target)
          Register an XML-RPC aware ProxyingRequestHandler proxying the specified target object.