[Design of Management Features on JBoss] - security domain used for securing remote access to Profile S
by ips
Currently, the Profile Service uses the "profileservice" security domain, while the JMX invoker (JMX console, twiddle, etc.) and the admin console use the "jmx-console" domain. This means JBAS5 users will need to configure two sets of credentials for admin access, instead of one, assuming they want to use both the Profile Service and JMX. It also means that JON users will need to configure two sets of credentials for a JBAS5 instance in order for Jopr to be able to manage that instance (this is because the Jopr JBAS5 plugin uses both the Profile Service and JMX).
Scott, to simplify things for users, what do you think about having the JMX invoker, the admin-console, and the PS remote access all share the same domain (perhaps called "admin" or "remote-admin")?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238046#4238046
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238046
16 years, 9 months
[Design the new POJO MicroContainer] - Re: Parallel deployments
by kabir.khan@jboss.com
With the current setup, using dependencies, and deploying:
A)
-Bean1 w/ ControllerMode.ASYNCHRONOUS and a dependency on Bean2
-Bean2 w/ControllerMode.AUTOMATIC
Bean1 is installed in a thread until the dependency is needed, at which point the thread is returned to the pool. Once Bean2 is installed in the main thread, Bean1 goes through the remaining lifecycle in the main thread.
B)
-Bean1 w/ ControllerMode.AUTOMATIC and a dependency on Bean2
-Bean2 w/ControllerMode.ASYNCHRONOUS
Bean1 is installed in the main thread until the dependency is needed. Then I deploy Bean2, which happens in a thread, once Bean2 is installed resolveContexts(boolean) is then called from the thread, finds Bean1, but that is not associated with the thread and currently halts installation.
I need to rethink how I'm attacking this. Maybe I'm being a bit too course-grained with where I am running ASYNCHRONOUS in a different thread, I'll see if I can make it happen later.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238030#4238030
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238030
16 years, 9 months