| com.rift.coad.lib.httpd.HttpServiceHandler
HttpServiceHandler | public class HttpServiceHandler extends HttpService implements SudoCallbackHandler,RequestInterface(Code) | | This object is responsible for handling the HTTP service requests.
It handles both the WebService requests and the RMI class loader requests.
author: Brett Chaldecott |
Method Summary | |
protected void | doService(HttpRequest request, HttpResponse response) This method is responsible for responding to the http server requests. | public void | process() This method performs the actuall processing of the request. |
HttpServiceHandler | public HttpServiceHandler(HttpServerConnection conn, Socket socket, String realm) throws HttpException(Code) | | Creates a new instance of HttpServiceHandler
Parameters: conn - The http server connection object. Parameters: socket - The socket that all the information is retrieved from. Parameters: realm - The security realm for the challange |
doService | protected void doService(HttpRequest request, HttpResponse response) throws HttpException, IOException(Code) | | This method is responsible for responding to the http server requests.
Parameters: request - The object containing the request value. Parameters: response - The method that encloses the http response value. exception: HttpException - exception: IOException - |
process | public void process() throws Exception(Code) | | This method performs the actuall processing of the request.
|
|
|