InvokerServlet allows Servertec Internet Server to run Servlets
found in the CLASSPATH without the Servlet first having to be defined.
Aliases
Alias: /servlet
Type: Servlet
Resource: InvokerServlet
Servlets
Alias: InvokerServlet
Class File: stec.iws.InvokerServlet
Parameters:
Usage
http://hostname:port/servlet/{package.}class{path}{?args}
hostname
|
The server running Servertec Internet Server.
Normally localhost.
|
port
|
The port Servertec Internet Server is using.
Normally 8080.
|
package
|
The Java Class package name.
|
class
|
The Java Class name.
|
path
|
Any path info.
|
args
|
Any parameters.
Normally URL encoded key=value pairs.
|
Notes
Requires that iws_dir/classes/optional.jar be
present in the CLASSPATH.
Normally defined as a Servlet aliased as /servlet.
Currently there is no way to pass initialization parameters to
the Servlets invoked. If you need to pass initialization
parameters you will need to directly define the Servlet in
servlets.ini or using the Servertec Internet Server
Administrator.
The CLASSPATH will be searched for the specified Servlet.
Example
http://localhost:8080/servlet/HelloServlet?World
|