The PIA includes two implementations of the Servlet interface: PIAServlet and DPSServlet.
So far, PIAServlet has only been tested in Apache-JServ and Sun's
servletrunner
in JSDK2.0. Because PIAServlet
is
still highly experimental, it should be configured with a path to
a file that it uses as a log file. Configuration files for JServ can be
found in PIA/Config/Servlet.
If you run the PIA under servletrunner
you must tell
it where to find the tagsets (the home
initialization
parameter), otherwise it will fail with a null pointer exception whenever
it tries to load a tagset.
The biggest problem with PIAServlet so far is that a Servlet is effectively a subdirectory, and JServ has no way to ``mount'' a Servlet on the server's root. There are two main ways of dealing with this:
mod_rewrite
or the equivalent to map
pathnames onto the PIA servlet. This pretty-well renders your server
useless for serving ordinary files, so you may as well just use the PIA
server.
PIA:url
and PIA:rootPath
entities in
your .xh
files to refer to the Servlet root. The entities
are defined correctly both in the standalone PIA and in the PIAServlet.
This allows a PIA-based application to co-exist with other applications
in your server.
Assuming you have JSDK2.0 and servletrunner
, you can start
the server with the command:
/usr/local/JSDK2.0/bin/servletrunner -r ~/PIA
and point your browser to:
http://localhost:8080/servlet/org.risource.servlet.PIAServlet/
tagset.ext=tsname
and
type.ext=mime-type
initialization
parameters.
(2000-04-05)
mod_rewrite
to map /xxx
to /PIA/xxx
.
(2000-04-05)