NonStop Servlets for JSP System Administrator's Guide
Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide—525644-001
3-6
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. It is an XML file that conforms to the web application 2.3 DTD (set 
of tags and structures). The file’s default location is /usr/tandem/webserver
/servlet_jsp/conf. 
The outline structure of iTP_server.xml is shown in Example 3-2.
<Server>
At the top level, the <Server> element represents the entire Java Virtual Machine. 
<Service>
A <Service> element represents a collection of one or more <Connector> 
elements that share a single container (and 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 is used to define the virtual host.
<Context>
A <Context> element is used to define an individual web application.
Example 3-2. Structure of iTP_server.xml
<Server>
 <Service>
 <Connector/>
 <Engine>
 <Host>
 <Context/>
 </Host>
 </Engine>
 </Service>
</Server>










