Hola! estoy tratando de empezar a usar struts y la verdad no doy una esto esto es lo que he hecho hasta ahora por favor orientenme si en algo me equivoque:
1.- Instale J2EE 1_4_03
2.- Instale tomcat 5.0.18
3.- Descargue struts-1.2.8-lib
Cree mi proyecto puse la carpeta de WEB-INF cree una carpeta lib, ahi he puesto todos los archivos que estaban dentro del comprimido struts-1.2.8-lib, cree el archivo web.xml y el archivo struts-config, cree un action, clase o como se le llame AccionBasica.
El web.xml tiene lo siguiente:
<?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">
<web-app>
<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>
<init-param>
<param-name>validate</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<taglib>
<taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-template.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-template.tld</taglib-location>
</taglib>
</web-app>
y el struts-config tiene:
<?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>
<action-mappings>
<action path="/accionBasica" type="com.xsf.actions.AccionBasica">
<forward name="home" path="/jsp/miJSP.jsp"/>
</action>
</action-mappings>
</struts-config>
despues hago http://localhost:8081/usandoStruts/accionBasica.do
y nada no ocurre nada, por favor alguien sabe que estoy haciendo mal