NonStop Servlets for JavaServer Pages (NSJSP) 5.0 System Administrator's Guide
Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide—525644-003
3-8
iTP_server.xml
In addition, the following Filemaps are also added to the nsjspadmin.config
configuration file:
Filemap /admin $nsjspadmin_objectcode
Filemap /manager $nsjspadmin_objectcode
This action directs all requests starting with /admin and /manager to the nsjspadmin
ServerClass.
iTP_server.xml
iTP_server.xml is a version of the standard server.xml file modified to use with
the iTP WebServer. iTP_server.xml is an XML file. The file’s default location is
$NSJSP_HOME/conf.
<Server>
At the top level, the <Server> element represents the entire Java Virtual Machine
(JVM).
<Service>
A <Service> element represents a collection of one or more <Connector>
elements that share a single container (therefore, the web applications are visible
within that container). Normally, that container is an <Engine>.
<Connector>
A <Connector> element represents an endpoint by which requests are received
and responses are returned, passing them on to the associated <Engine> for
processing.
<Engine>
An <Engine> element represents the Catalina object that processes every
request, passing the requests on to the appropriate <Host>.
<Host>
The <Host> element defines the virtual host.
Example 3-3. Basic Structure of iTP_server.xml
<Server>
<Service>
<Connector/>
<Engine>
<Host>
</Host>
</Engine>
</Service>
</Server>










