Im new to struts. Bought several books and now starting to put a simple
program
together. My web app simply contains one page and im trying to register the
number of hits. Im getting the following error. I cant figure out why.If
you require more info please let me know. Thank you all for your time


org.apache.jasper.JasperException: Cannot find global ActionForward for
name welcome
 at
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)


 at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)

----------------------------------------------------------------------------------------
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<logic:forward name="welcome"/>

<%--

Redirect default requests to Welcome action.

--%>
---------------------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd";>

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

    <global-forwards>
        <forward
            name="welcome"
            path="/Welcome.do"/>
    </global-forwards>

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

    <action-mappings>
       <action
            path="/welcome"
            type="binary.solutions.BinaryAction"

         </action>
    </action-mappings>

</struts-config>

*****************************************************************************************************************************************************************************************

This message is intended for the use of the individual or entity to which
it is addressed and may contain information that is confidential and
privileged and exempt from disclosure under applicable law.  If the reader
of this message is not the intended recipient, you are hereby notified that
any dissemination, distribution, or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please contact the sender immediately and delete it from your system.
Thank you
*****************************************************************************************************************************************************************************************



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to