org.mortbay.servlet
Class CGI
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.mortbay.servlet.CGI
- All Implemented Interfaces:
- Serializable, Servlet, ServletConfig
public class CGI
- extends HttpServlet
CGI Servlet.
The cgi bin directory can be set with the cgibinResourceBase init
parameter or it will default to the resource base of the context.
The "commandPrefix" init parameter may be used to set a prefix to all
commands passed to exec. This can be used on systems that need assistance
to execute a particular file type. For example on windows this can be set
to "perl" so that perl scripts are executed.
The "Path" init param is passed to the exec environment as PATH.
Note: Must be run unpacked somewhere in the filesystem.
Any initParameter that starts with ENV_ is used to set an environment
variable with the name stripped of the leading ENV_ and using the init
parameter value.
- Author:
- Julian Gosnell, Thanassis Papathanasiou - Some minor modifications for Jetty6 port
- See Also:
- Serialized Form
Nested Class Summary |
private static class |
CGI.EnvList
private utility class that manages the Environment passed
to exec. |
Constructor Summary |
CGI()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_docRoot
private File _docRoot
_path
private String _path
_cmdPrefix
private String _cmdPrefix
_env
private CGI.EnvList _env
CGI
public CGI()
init
public void init()
throws ServletException
- Overrides:
init
in class GenericServlet
- Throws:
ServletException
service
public void service(HttpServletRequest req,
HttpServletResponse res)
throws ServletException,
IOException
- Overrides:
service
in class HttpServlet
- Throws:
ServletException
IOException
exec
private void exec(File command,
String pathInfo,
HttpServletRequest req,
HttpServletResponse res)
throws IOException
- Throws:
IOException