For remote access, you'd configure the security for the console. http://wiki.jboss.org/wiki/Wiki.jsp?page=HowDoISecureTheJMXConnection
This will authenticate a remote connection, take "username+password" and create a principal. For fine-grained authentication, enable this interceptor: http://jsourcery.com/api/sourceforge/jboss/4.0.4/org/jboss/jmx/connector/invoker/AuthorizationInterceptor.html Which, once configured, can instantiate an object and call this method: | public void authorize( Principal caller, Subject subject, String objectname,String opname) | I don't believe there's a tutorial... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112787#4112787 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4112787 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
