I've tried the jboss.xml below in RC5, it does not seem to work, the default login module gets invoked. Am I missing anything? To be precise, my jboss.xml is:
| <?xml version='1.0' encoding='UTF-8' ?> | <jboss> | <security-domain>MySecurityDomain</security-domain> | </jboss> | I also tried <security-domain>java:/jaas/MySecurityDomain</security-domain> with same result. However, the login module defined for MySecurityDomain does get invoked if I use @SecurityDomain in the code. On a different topic, is there an equivalent for the @RemoteBindings annotation in the jboss.xml? Thanks "[EMAIL PROTECTED]" wrote : As marcu said, you haven't declared a security domain in login-config.xml. in @SecurityDomain use the base name, not "java:/jaas/xxx" | | | With the next release (next week sometime) You will be able to do: | | jboss.xml | | | <jboss> | | <security-domain>xxx</security-domain> | | </jboss> | | | | until then... | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928569#3928569 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928569 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
