Documentation
Conventions
Command Line
Java API
Servlet API
Servlets
Config Files
acl.ini
aliases.ini
computers.ini
groups.ini
iws.ini
logger.ini
messages.ini
mimetypes.ini
resources.ini
rights.ini
servlets.ini
session.ini
users.ini
Log Files
Classes
Directory Tree
Return
|
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 Servertec
Internet Server is rebuilt and redeployed.
Example
FileServlet = stec.iws.FileServlet
|
|