How can I fix this message ??? 
SEVERE: No action instance for path /wellcome could be created



my  struts-config.xml is:



<?xml version="1.0" encoding="UTF-8"?>

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

<struts-config>


<!-- ========== Data Source Configuration =============================== -->

<data-sources />


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

<form-beans>

<form-bean name="homeBean" type="com.topit.bean.HomeBean" /> 

<form-bean name="indexBean" type="com.topit.bean.IndexBean" />

</form-beans>


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

<global-exceptions />


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

<global-forwards />


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

<action-mappings>

<action path="/home" type="com.topit.action.HomeAction" validate="false">

<forward name="success" path="/home.jsp" redirect="true" />

</action>

<action path="/wellcome" type="com.topit.action.WellcomeAction" validate="false">

<forward name="success" path="/wellcome.jsp" redirect="true" />

</action>


</action-mappings>


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

<controller />


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

<message-resources parameter="com.topit.ApplicationResources" />


<!-- ========== Plug Ins Configuration ================================= -->

</struts-config>



and when i tri to access on the browser: http://localhost:8080/appTeste/wellcome.do 
this error apper:
SEVERE: No action instance for path /wellcome could be created

Reply via email to