Ok, what I did was simply remove the reference to the DTD in the
struts-config.xml file.  Now, the ActionServlet does load up.  However,
I am getting one more problem:

javax.servlet.jsp.JspException: Cannot retrieve mapping for action
/login
        at
org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:714)
        at
org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:441)
        at
_0002flogin_0002ejsplogin_jsp_3._jspService(_0002flogin_0002ejsplogin_js
p_3.java:71)


The example I am coping is exactly the same.  Here is my
struts-config.xml file:

--------
  <form-beans>
    <form-bean name="loginForm" type="login.LoginForm"/>
  </form-beans>


 <action-mappings>

    <!-- Login Action -->
    <action path="/login" 
            type="login.LoginAction" 
            name="login" 
            scope="request" 
            validate="false">
      <forward name="success" path="/success.jsp"/>
    </action>

  </action-mappings>
------------


I'm sure when I can get this to work it'll all be worth it.
Thanks!!
Brett

Reply via email to