<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<virtual-host>myapp-webapp</virtual-host>
<context-root>/</context-root>
<max-active-sessions>2000</max-active-sessions>
<security-domain>other</security-domain>
</jboss-web>
I tried what you suggested and specified an exact file in the web.xml <security-constraint> url-pattern but I am still getting the validateRequest() method being invoked
I have also tried specifying the subfolders where the static files are contained eg.
<security-constraint>
<web-resource-collection>
<web-resource-name>Static Content</web-resource-name>
<url-pattern>/images/*</url-pattern>
<url-pattern>/resources/*</url-pattern>
<url-pattern>/jsJawrPath/*</url-pattern>
<url-pattern>/javax.faces.resource/*</url-pattern>
</web-resource-collection>
</security-constraint>
But this doesn't seem to work either
Could it be some Elytron configuration that is overriding the EE Security spec?