You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by ca...@dot.state.fl.us on 2006/06/16 15:55:45 UTC

Newbie - can't identify her problem -

I'm using tomcat 5.0.19...I get a 404 error but I cannot figure out why
when I run:
http://localhost:8080/SplitTransaction/login.jsp.   I am not getting any
errors when I compile and I can see my *.class files in .deployables.  I do
get unknown tag warnings (with any html or message prefix - an example is
html:cancel )..  I'm stuck I do not know where to go from here.  Please
point me in a direction to identify and resolve whatever my issue is.  Many
thanks in advance.
 Here are my files:
config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "c:\carrie\struts-config_1_2.dtd">

<!--
     This is a blank Struts configuration file with an example
     welcome action/page and other commented sample elements.

     Tiles and the Struts Validator are configured using the factory
defaults
     and are ready-to-use.

     NOTE: If you have a generator tool to create the corresponding Java
classes
     for you, you could include the details in the "form-bean"
declarations.
     Otherwise, you would only define the "form-bean" element itself, with
the
     corresponding "name" and "type" attributes, as shown here.
-->


<struts-config>

<!-- ============================================ Data Source Configuration
-->
<!--
<data-sources>
<data-source type="org.apache.commons.dbcp.BasicDataSource">
    <set-property
      property="driverClassName"
      value="org.postgresql.Driver" />
    <set-property
      property="url"
      value="jdbc:postgresql://localhost/mydatabase" />
    <set-property
      property="username"
      value="me" />
    <set-property
      property="password"
      value="test" />
    <set-property
      property="maxActive"
      value="10" />
    <set-property
      property="maxWait"
      value="5000" />
    <set-property
      property="defaultAutoCommit"
      value="false" />
    <set-property
      property="defaultReadOnly"
      value="false" />
    <set-property
      property="validationQuery"
      value="SELECT COUNT(*) FROM market" />
</data-source>
</data-sources>
-->

<!-- ================================================ Form Bean Definitions
-->

    <form-beans>
    <!-- sample form bean descriptor for an ActionForm
        <form-bean
            name="inputForm"
            type="app.InputForm"/>
    end sample -->

    <!-- sample form bean descriptor for a DynaActionForm
        <form-bean
            name="logonForm"
            type="org.apache.struts.action.DynaActionForm">
            <form-property
                name="username"
                type="java.lang.String"/>
            <form-property
                name="password"
                type="java.lang.String"/>
       </form-bean>
    end sample -->
            <form-bean
                  name="LoginForm"
                  type="com.patron.split.login.LoginForm"/>
    </form-beans>


<!-- ========================================= Global Exception Definitions
-->

    <global-exceptions>
        <!-- sample exception handler
        <exception
            key="expired.password"
            type="app.ExpiredPasswordException"
            path="/changePassword.jsp"/>
        end sample -->
    </global-exceptions>


<!-- =========================================== Global Forward Definitions
-->

    <global-forwards>
        <!-- Default forward to "Welcome" action -->
        <!-- Demonstrates using index.jsp to forward -->
        <forward
            name="welcome"
            path="/Welcome.do"/>
    </global-forwards>


<!-- =========================================== Action Mapping Definitions
-->

    <action-mappings>
            <!-- Default "Welcome" action -->
            <!-- Forwards to Welcome.jsp -->
        <action
            path="/Welcome"
            forward="/pages/Welcome.jsp"/>

    <!-- sample input and input submit actions

        <action
            path="/Input"
            type="org.apache.struts.actions.ForwardAction"
            parameter="/pages/Input.jsp"/>

        <action
            path="/InputSubmit"
            type="app.InputAction"
            name="inputForm"
            scope="request"
            validate="true"
            input="/pages/Input.jsp"/>

            <action
                path="/edit*"
                type="app.Edit{1}Action"
                name="inputForm"
                scope="request"
                validate="true"
                input="/pages/Edit{1}.jsp"/>

    end samples -->

            <action
                  path="/login"
                  type="com.patron.split.login.LoginAction"
                  name="LoginForm"
                  scope="request"
                  validate="true"
                  input="/pages/login.jsp">
                  <forward name="success" path="/pages/split.jsp"/>
            </action>
    </action-mappings>


<!-- ============================================= Controller Configuration
-->

    <controller
       processorClass="org.apache.struts.tiles.TilesRequestProcessor"/>


<!-- ======================================== Message Resources Definitions
-->

    <message-resources parameter="MessageResources" />


<!-- =============================================== 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.
  -->

    <plug-in className="org.apache.struts.tiles.TilesPlugin" >

      <!-- Path to XML definition file -->
      <set-property property="definitions-config"
                       value="/WEB-INF/tiles-defs.xml" />
      <!-- Set Module-awareness to true -->
      <set-property property="moduleAware" value="true" />
    </plug-in>


  <!-- =================================================== Validator plugin
-->

  <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property
        property="pathnames"
        value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
  </plug-in>

</struts-config>

login.jsp
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-tiles" prefix="tiles" %>

<html:html locale="true">

<head>
<title><bean:message key="welcome.title"/></title>

<html:base/>

</head>

<body bgcolor="white">

<html:form action="/login.do" >

<html:errors/>

<table>

      <tr>

            <td align="center" colspan="2">
                  <font size="4">Please Enter your Login</font>
            </td>
      </tr>

      <tr>
            <td align="right">
            Name
            </td>
      </tr>
      <tr>
            <td align="left">
                  <html:text property="name" size="4" maxlength="4"/>
            </td>
      </tr>
      <tr>
            <td align="right">
            Password
            </td>
            <td align="left">
                  <html:password property="password" size="8" maxlength="8"
/>
            </td>
      </tr>
      <tr>
            <td align="right">
                  <html:submit>Submit</html:submit>
            </td>
            <td align="left">
                  <html:cancel>Cancel</html:cancel>
            </td>
      </tr>
</table>
</html:form>
</body>
</html:html>
Console from Eclipse
Jun 16, 2006 9:41:49 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on port 8080
Jun 16, 2006 9:41:50 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1192 ms
Jun 16, 2006 9:41:50 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jun 16, 2006 9:41:50 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.0.19
Jun 16, 2006 9:41:50 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Jun 16, 2006 9:41:50 AM org.apache.catalina.core.StandardHost getDeployer
INFO: Create Host deployer for direct deployment ( non-jmx )
Jun 16, 2006 9:41:50 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Processing Context configuration file URL file:C:\Program
Files\Apache Software Foundation\Tomcat 5.0
\conf\Catalina\localhost\admin.xml
Jun 16, 2006 9:41:51 AM org.apache.struts.util.PropertyMessageResources
<init>
INFO: Initializing, config='org.apache.struts.util.LocalStrings',
returnNull=true
Jun 16, 2006 9:41:51 AM org.apache.struts.util.PropertyMessageResources
<init>
INFO: Initializing, config='org.apache.struts.action.ActionResources',
returnNull=true
Jun 16, 2006 9:41:51 AM org.apache.struts.util.PropertyMessageResources
<init>
INFO: Initializing, config='org.apache.webapp.admin.ApplicationResources',
returnNull=true
Jun 16, 2006 9:41:53 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Processing Context configuration file URL file:C:\Program
Files\Apache Software Foundation\Tomcat 5.0
\conf\Catalina\localhost\balancer.xml
Jun 16, 2006 9:41:53 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Processing Context configuration file URL file:C:\Program
Files\Apache Software Foundation\Tomcat 5.0
\conf\Catalina\localhost\manager.xml
Jun 16, 2006 9:41:53 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /struts-blank from URL
file:C:/Program Files/Apache Software Foundation/Tomcat 5.0
/webapps/struts-blank
Jun 16, 2006 9:41:55 AM org.apache.struts.tiles.TilesPlugin
initDefinitionsFactory
INFO: Tiles definition factory loaded for module ''.
Jun 16, 2006 9:41:55 AM org.apache.struts.validator.ValidatorPlugIn
initResources
INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
Jun 16, 2006 9:41:55 AM org.apache.struts.validator.ValidatorPlugIn
initResources
INFO: Loading validation rules file from '/WEB-INF/validation.xml'
Jun 16, 2006 9:41:55 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /struts-examples from URL
file:C:/Program Files/Apache Software Foundation/Tomcat 5.0
/webapps/struts-examples
Jun 16, 2006 9:41:57 AM org.apache.struts.validator.ValidatorPlugIn
initResources
INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
Jun 16, 2006 9:41:57 AM org.apache.struts.validator.ValidatorPlugIn
initResources
INFO: Loading validation rules file from
'/WEB-INF/validator/validation.xml'
Jun 16, 2006 9:41:58 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /jsp-examples from URL
file:C:\Program Files\Apache Software Foundation\Tomcat 5.0
\webapps\jsp-examples
Jun 16, 2006 9:41:59 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path  from URL file:C:\Program
Files\Apache Software Foundation\Tomcat 5.0\webapps\ROOT
Jun 16, 2006 9:41:59 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /servlets-examples from
URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0
\webapps\servlets-examples
Jun 16, 2006 9:41:59 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /tomcat-docs from URL
file:C:\Program Files\Apache Software Foundation\Tomcat 5.0
\webapps\tomcat-docs
Jun 16, 2006 9:41:59 AM org.apache.catalina.core.StandardHostDeployer
install
INFO: Installing web application at context path /webdav from URL
file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\webdav
Jun 16, 2006 9:41:59 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on port 8080
Jun 16, 2006 9:41:59 AM org.apache.jk.common.ChannelSocket init
INFO: JK2: ajp13 listening on /0.0.0.0:8009
Jun 16, 2006 9:41:59 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/20  config=C:\Program Files\Apache Software
Foundation\Tomcat 5.0\conf\jk2.properties
Jun 16, 2006 9:41:59 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 9855 ms

my web.xml file
<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
  PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  "c:\carrie\web-app_2_2.dtd">

<web-app>
  <display-name>Struts Blank Application</display-name>

  <!-- Standard Action Servlet Configuration (with debugging) -->
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
      <param-name>debug</param-name>
      <param-value>2</param-value>
    </init-param>
    <init-param>
      <param-name>detail</param-name>
      <param-value>2</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
  </servlet>


  <!-- Standard Action Servlet Mapping -->
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>


  <!-- The Usual Welcome File List -->
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>


  <!-- Struts Tag Library Descriptors -->
  <taglib>
    <taglib-uri>/tags/struts-bean</taglib-uri>
    <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/tags/struts-html</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/tags/struts-logic</taglib-uri>
    <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/tags/struts-nested</taglib-uri>
    <taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
  </taglib>

  <taglib>
    <taglib-uri>/tags/struts-tiles</taglib-uri>
    <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
  </taglib>

</web-app>




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org