NonStop Servlets for JavaServer Pages (NSJSP) 6.1 System Administrator's Guide
Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) 6.1 System Administrator’s Guide—596210-006
3-68
The web.xml File
JSP Page Compiler and Execution Servlet
The JSP Page Compiler and Execution Servlet is the mechanism used by NSJSP
(inherited from Tomcat) to process JSP pages. Traditionally, this servlet is mapped to
the URL pattern *.jsp. You can use the default configuration for most applications.
For more information on the JSP Page Compiler and Execution Servlet, see
http://tomcat.apache.org/tomcat-6.0-doc/jasper-howto.html.
Example 3-55 shows the configuration of the JSP page compiler and execution
Servlet.
Example 3-54. Configuration of the Invoker Servlet
<!--
<servlet>
<servlet-name>invoker</servlet-name>
<servlet-
class>org.apache.catalina.servlets.InvokerServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
-->
.
.
.
<!-- The mapping for the invoker servlet -->
<!--
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
-->










