This content has been marked as final.
Show 3 replies
-
1. Re: Migration from Bea Weblogic => Security roles, users and
wolfgangknauf Nov 18, 2008 6:39 AM (in response to altes-kind)Hi,
there are some differences. First of all, you need a jboss specific "Security Domain". For this, add a file "jboss-web.xml" to "WEB-INF" of your web project, declaring a "security-domain":<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 4.2//EN" "http://www.jboss.org/j2ee/dtd/jboss-web_4_2.dtd"> <jboss-web> <security-domain>java:/jaas/nameofyoursecuritydomain</security-domain> <context-root>...</context-root> </jboss-web>
The security domain itself is declared in "\server\default\conf\login-config.xml" and defines the user/role mappings.
As I see that you are from Germany: here is a german tutorial for JBoss security (including a database-based user/role mapping): http://www.informatik.fh-wiesbaden.de/~knauf/SWTVertiefungWS2007/security/index.html
Hope this helps
Wolfgang -
2. Re: Migration from Bea Weblogic => Security roles, users and
a.newdelhi May 2, 2011 4:52 AM (in response to altes-kind)Hi,
I'm not sure if you find the solution for you r questions
What steps do I have to do in JBoss AS to get the same configuration as in Weblogic?
a) As there is no Server Console in JBoss, how do I configure users and groups in JBoss AS?
b) How do I have to change the weblogic.xml to use it in JBoss AS?
if yes ...
Please share
Thanks
Ashutosh
-
3. Re: Migration from Bea Weblogic => Security roles, users and
a.newdelhi Jun 15, 2011 4:55 AM (in response to a.newdelhi)