0

This is the start of my web.xml in which the errors occur

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee; http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">

Eclipse shows these 2 errors :

Error 1 : cvc-elt.1: Cannot find the declaration of element 'web-app'. web.xml /"app.module"/src/main/webapp/WEB-INF line 5 XML Problem

Error 2 : Referenced file contains errors (jar:file:/C:/Program Files/eclipse/plugins/org.jboss.tools.as.catalog_3.2.4.v20170308-1740.jar!/schema/xsd/jboss-ejb3-spec-2_0.xsd).

sharp
  • 1,191
  • 14
  • 39

1 Answers1

1

Try using:

 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
      http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
      version="2.5">

Ori Marko
  • 56,308
  • 23
  • 131
  • 233
  • Now this issue is gone but another appeared i have this ` /proxyrest/* AuthenticationFilter ` cvc-complex-type.2.4.a: Invalid content was found starting with element 'url-pattern'. One of '{"http://java.sun.com/xml/ns/javaee":filter-name}' is expected. – Калоян Ников Jul 07 '17 at 12:44
  • See https://stackoverflow.com/questions/6796692/eclipse-reporting-problem-in-my-web-xml-but-it-is-processed-fine – Ori Marko Jul 07 '17 at 15:51