My web.xml has the mapping
<security-constraint>
| <web-resource-collection>
| <web-resource-name>Authenticated</web-resource-name>
| <description></description>
|
| <url-pattern>/*</url-pattern>
| </web-resource-collection>
| <auth-constraint>
| <role-name>Authenticated</role-name>
| </auth-constraint>
| </security-constraint>
The aplication is deployed at
http://localhost:8081/portal/portal/CISMS/
but the security constraint is applied to
http://localhost:8081/cisms/*
how do i get it to apply to
http://localhost:8081/portal/portal/CISMS/*
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4076113#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...