InvokerServlet allows Servertec Internet Server to run Servlets
found in the PATH 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 Class package name.
|
class
|
The Class name.
|
path
|
Any path info.
|
args
|
Any parameters.
Normally URL encoded key=value pairs.
|
Notes
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.
Example
http://localhost:8080/servlet/HelloServlet?World
|