Hi, Iam new to struts. Iam developing a web application using JDK 1.4.2, Tomcat 5.5.23 and Struts 1.3.8
When Iam requesting for my logon page(http://localhost:5523/smt/logon.jsp) on the browser I get "The page cannot be found" error (HTTP 404 File Not Found)
Can someone help me on this ?
My tomcat listens to port 5523 and Iam deployoing my war file inside "webapps" folder of tomcat.
My web.xml looks like this
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<!-- ======================== Plug Ins Configuration ==================== -->
<!-- ============================ Tiles plugin ======================== --> <!-- This plugin initialize Tiles definition factory. This later can takes some parameters explained here after. The plugin first read parameters from web.xml, thenoverload them with parameters defined here. All parameters are optional. The plugin should be declared in each struts-config file. - definitions-config: (optional) Specify configuration file names. There can be several comma separated file names (default: ?? ) - moduleAware: (optional - struts1.1) Specify if the Tiles definition factory is module aware. If true (default), there will be one factory for each Struts module. If false, there will be one common factory for all module. In this later case, it is still needed to declare one plugin per module. The factory will be initialized with parameters found in the first initialized plugin (generally the one associated with the default module). true : One factory per module. (default) false : one single shared factory for all modules - definitions-parser-validate: (optional) Specify if xml parser should validate the Tiles configuration file. true : validate. DTD should be specified in file header (default) false : no validation
Paths found in Tiles definitions are relative to the main context.
To use this plugin, download and add the Tiles jar to your WEB-INF/lib directory then uncomment the plugin definition below.