[jboss-dev-forums] [JBoss AS 7 Development] - WildFly - login page cannot access css files (FORM based authentication)

Marcos Antonio do-not-reply at jboss.com
Tue Jun 18 15:17:54 EDT 2013


Marcos Antonio [https://community.jboss.org/people/marcos_aps] created the discussion

"WildFly - login page cannot access css files (FORM based authentication)"

To view the discussion, visit: https://community.jboss.org/message/823742#823742

--------------------------------------------------------------
Hello, everybody!

I'm trying WildFly. After I enabled FORM based authenticaton in my simple web application, the login page (or container) cannot access the css files located in the /resources/css directory. That is working in a JBoss 7.1 application that I have in production with the same configuration. This is the relevant configuration in my simple application using WildFly:

*web.xml:*

<security-constraint>
 <web-resource-collection>
  <web-resource-name>restricted</web-resource-name>
  <url-pattern>/*</url-pattern>
 </web-resource-collection>
 <auth-constraint>
  <role-name>USUARIO</role-name>
 </auth-constraint>
</security-constraint>

<security-constraint>
 <web-resource-collection>
  <web-resource-name>allowed</web-resource-name>
  <url-pattern>/modelos/*</url-pattern>
  <url-pattern>/resources/*</url-pattern>
 </web-resource-collection>
</security-constraint>

<login-config>
 <auth-method>FORM</auth-method>
 <form-login-config>
  <form-login-page>/login.xhtml</form-login-page>
  <form-error-page>/errologin.xhtml</form-error-page>
 </form-login-config>
</login-config>

  <security-role>
 <role-name>USUARIO</role-name>
  </security-role>
  <security-role>
 <role-name>NAO_AUTORIZADO</role-name>
  </security-role>

*jboss-web.xml:*

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
    <security-domain>solicitacoes</security-domain>
</jboss-web>

*standalone.xml:*

<security-domain name="solicitacoes" cache-type="default">
    <authentication>
        <login-module code="br.urca.solicitacoes.visao.ModuloLogin" flag="required"/>
    </authentication>
</security-domain>

So, what am I missing or doing wrong?

Thank you.

Marcos
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/823742#823742]

Start a new discussion in JBoss AS 7 Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2225]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-dev-forums/attachments/20130618/b2325cb7/attachment.html 


More information about the jboss-dev-forums mailing list