servlets.ini, used to store Servlet definitions.
Syntax
alias = class_file{?parameter{¶meter}...}
alias
|
the name of the Servlet.
|
class_file
|
the Java Class in the form package.class of the Servlet
to use.
The CLASSPATH will be searched for the specified Servlet.
|
parameter
|
any parameters used during the initialization of the Servlet.
Zero or more & delimited key=value pairs can be
specified.
|
Notes
A Servlet is a Java Class that is invoked when a request matches a specific
URI.
Changes made to configuration files will not be used until the server is
restarted.
Example
FileServlet = stec.iws.FileServlet
CgiServlet = stec.iws.CgiServlet ?bindir=./cgi-bin&exec=c:\\windows\\system32\\cmd.exe /c
|