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

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

Uses of SynchronousRequestHandler in com.flat502.rox.demo
 

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

Uses of SynchronousRequestHandler in com.flat502.rox.server
 

Classes in com.flat502.rox.server that implement SynchronousRequestHandler
 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 with parameters of type SynchronousRequestHandler
 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.