Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/03/2010, 11:22
GermanGaita
 
Fecha de Ingreso: abril-2009
Mensajes: 53
Antigüedad: 15 años
Puntos: 1
Respuesta: Struts error al generar WAR

Bueno pude solucionarlo, efectivamente no disponia de los archivos struts-bean.tld , struts-html.tld y struts-logic.tld
Lo que hice fue descargarlos, estan dentro del src de Struts, los pegue en la carpeta WEB-INF y los importe del a siguiente manera:
<%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>

Agregue esto al web.xml pero nose si hace falta:

Código:
 <taglib>
  <taglib-uri>/WEB-INF/struts-bean</taglib-uri>
  <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
 </taglib>
 <taglib>
  <taglib-uri>/WEB-INF/struts-logic</taglib-uri>
  <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
 </taglib>
 <taglib>
  <taglib-uri>/WEB-INF/struts-html</taglib-uri>
  <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
 </taglib>
Muchisimas gracias por la ayuda!
Saludos!