3 Replies Latest reply on Feb 17, 2011 8:36 AM by scabanovich

    Error checking problem with JBossTools 3.2.x web.xml editor

    bier

      Hi,

       

      my web application has the follwing contents defined.

       

      The first sequence uses a feature of tomcat that allows to use system properties in your web.xml

       <login-config>
        <auth-method>${myapp.authentication}</auth-method>
       </login-config>
      

       

      The web.xml editor marks this as error with the information:

      Value should be one of BASIC, DIGEST, FORM, CLIENT-CERT.

       

       

      The second sequence defines a security role (where is defined that a role name has to be a Java name?):

      <security-role>
        <role-name>ALLOW-ALL</role-name>
      </security-role>
      

       

      The web.xml editor marks this as error with the information:

      Value is not a Java name.

       

      And here my Question:

      Is it possible to disable single rules from the error checking or is tehre a way to disable the error checking of the editor completely?