| javax.servlet.http.HttpServlet org.enhydra.servlet.servlets.CGIServlet
CGIServlet | public class CGIServlet extends HttpServlet (Code) | | This Servlet is for the purpose of executing a CGI program that resides on
the system. In order to use this servlet in the server please
remember to specify the fully qualified classname
org.enhydra.servlet.servlets.CGIServlet in the Classname field and specify
the directory of the CGI to run in the DocRoot field.
version: $Revision: 1.2 $ author: Kent Henneuse author: Paul Morgan |
service | public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException(Code) | | Overide the service method of HttpServelet. This method executes a CGI
program that is specified on the URL line of a browser.
Parameters: request - the request that is sent by a browser Parameters: response - the response that is sent back to the browser after processing the CGI |
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|