Olá pessoal… Estou com problemas em configurar o web.xml, para usar um filtro para fazer autenticação. No meu ver o arquivo não possui nenhum erro, mas a validação do mesmo informa o seguinte erro:
“Fatal error - The markupdeclarations contanied or pointed to by the document type declaration must be well-formed. in file http://java.sun.com/dtd/web-app_2.3.dtd”. Sei que o erro está dizendo que o arquivo não está obedecendo as regras de validação, mas onde está o erro?
Abaixo segue o arquivo web.xml:
[color=“red”][i]<?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/j2ee/dtds/web-app_2_3.dtd”>
<!-- Copyright © 2002 by ObjectLearn. All Rights Reserved. -->
<web-app>
<filter>
<filter-name>Autenticacao</filter-name>
<filter-class>br.com.ptcom.webField.util.AutenticacaoFiltro</filter-class>
</filter>
<filter-mapping>
<filter-name>Autenticacao</filter-name>
<url-pattern>/jsp/*</url-pattern>
</filter-mapping>
<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>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/do/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>loginBody.jsp</welcome-file>
</welcome-file-list>
<taglib>
<taglib-uri>/WEB-INF/tld/displaytag-11.tld</taglib-uri>
<taglib-location>/WEB-INF/tld/displaytag-11.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jstl/sql/</taglib-uri>
<taglib-location>/WEB-INF/tld/sql.tld</taglib-location>
</taglib>
</web-app>[/i][/color]
Se alguém conhece a causa do erro, por favor me ajudem… estou travado nesse ponto do projeto.
Muito Obrigado pela atenção!!