-
Bug
-
Resolution: Done
-
Critical
-
None
-
None
We are migrating our Web Application from JBoss 7.1.1 to Wildfly 9.0.0 .In our web.xml we have security constraints like
<security-constraint>
<web-resource-collection>
<web-resource-name>Public</web-resource-name>
<url-pattern>/javax.faces.resource/*</url-pattern>
<url-pattern>/index.xhtml</url-pattern>
</web-resource-collection>
</security-constraint>
these were working without problem with Jboss 7.1.1.
After migrating to WildFly we realized that "/javax.faces.resource/*" url pattern was not working.
When we changed url-patten from "/javax.faces.resource/*" to "javax.faces.resource/theme.css.xhtml" it works again. I don't know If I am missing something but it seems like a bug.