NonStop Servlets for JavaServer Pages (5.0) System Administrator's Guide
Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide—525644-002
3-9
iTP_server.xml
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.
<Context>
A <Context> element defines an individual web application. Note that it is no
longer recommended that you have the <Context> tag in the iTP_server.xml
file. These tags should be moved to the Context configuration file
(<context>.xml) and placed in the $NSJSP_HOME/conf/NSJSP/<host-
name>/ directory.
Example 3-3. Basic Structure of iTP_server.xml
<Server>
<Service>
<Connector/>
<Engine>
<Host>
</Host>
</Engine>
</Service>
</Server>