IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Deploying an XUI Web project on a Tomcat server

If you are deploying an XUI Web project on a Tomcat server, you must configure the web.xml file.

To deploy an XUI Web project on a Tomcat server, you must change the value of the <load-on-startup> property to 1 as shown in Figure 1.
Figure 1. Setting the value of the <load-on-startup> property to 1.
<servlet>
		<display-name>StartServerServlet</display-name>
		<servlet-name>StartServerServlet</servlet-name>
		<servlet-class>com.ibm.btt.application.appl.StartServerServlet<servlet-class>
		<init-param>
				<param-name>bttConfigPath</param-name>
				<param-value>jar:///definitions/btt.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
</servlet>


Feedback