This content has been marked as final.
Show 4 replies
-
1. Re: Problem login on jbpr JBoss 5.1.0
ips May 5, 2009 9:05 AM (in response to fancoli)Hi,
Did you make these updates to the jmx-console's web.xml/jboss-web.xml or to the admin-console's web.xml/jboss-web.xml? -
2. Re: Problem login on jbpr JBoss 5.1.0
fancoli May 6, 2009 1:08 AM (in response to fancoli)I made these updates to the admin-console's web.xml/jboss-web.xml
max -
3. Re: Problem login on jbpr JBoss 5.1.0
ips May 6, 2009 8:43 AM (in response to fancoli)The reason you're being authenticated twice is that the security constraints in the admin console war are defined via Seam, rather than in web.xml. Specifically, you'll see:
#{s:hasRole('JBossAdmin')}
twice in WEB-INF/pages.xml and once in include/resourceNavigation.xhtml. You should just need to remove the security constraint you added from web.xml and change these three references to:#{s:hasRole('MyJBossrole')}
-
4. Re: Problem login on jbpr JBoss 5.1.0
fancoli May 8, 2009 5:06 AM (in response to fancoli)Thanks,
I am going to try it.