Struts

Olá pessoal, estou iniciando um projeto com struts, li o artigo sobre o mesmo aqui no portal, exelente!, porém estou com uma dúvida e um problema, no seguinte trecho do artigo fala para colocar todos os arquivos .tld abaixo do diretório WEB-INF, coloquei todos lá, mas quando eu rodo a aplicação dá a seguinte exceção:

org.apache.jasper.JasperException: File “/WEB-INF/struts-bean.tld” not found

… quem souber o erro em que estou cometendo, por favor ajudem a sanar a minha ignorância sobre o assunto…
Valeu pela atenção…!!!

não sei se é esse o problema, mas tente

no \WEB-INF\web.xml

<web-app>
...
    <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>
    <!-- TODOS OS OUTROS Q VC TIVER -->
</web-app>