[jboss-user] [Security & JAAS/JBoss] - logout
avihaimar
do-not-reply at jboss.com
Tue Apr 22 18:41:32 EDT 2008
Hey,
i am working with jboss4.2
the server expose stateless session bean as facade.
i implement CustomLoginModule.
My question is -
is there a way to listent to logout? for how long the user is login to the system.
I have remote client like this:
Properties properties = new Properties();
|
| // Working for both
|
| String authConf = "C:/work/devenv/mgt-server/third-party/jboss-4.2.0.GA/client/auth.conf";
| System.setProperty("java.security.auth.login.config", authConf);
| AppCallbackHandler handler = new AppCallbackHandler("aaa", "aaaa".toCharArray());
| LoginContext lc = new LoginContext("testSecureHttpInvoker", handler);
| lc.login();
|
| properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.HttpNamingContextFactory");
| //properties.put(Context.PROVIDER_URL, "https://127.0.0.1:8443/invoker/JNDIFactory");
| properties.put(Context.PROVIDER_URL, "https://10.205.102.37:8443/invoker/JNDIFactory");
| (Context.PROVIDER_URL, "127.0.0.1:1099");
| return new InitialContext(properties);
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4145996#4145996
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4145996
More information about the jboss-user
mailing list