There are examples of doing almost everything in your installation examples directory. Last time I checked, there were about 90 example pages illustrating all the techniques.
Well, after much searching, I randomly stumbled across the correct incantation to be able to log out using session.invalidate():
in jboss-web.xml
So now, I can log out when they click the logout link.
Great.
Next up, how to programatically determine whether a URL is available to the current user.
I'm of course using container-managed authorization, but it's no good outputting a link only to have the user click on it, and be tipped into the error page by JBoss. I want to have a custom tag for links which does not output any HTML if the URL is not accessible to the current user.
Any ideas?
[size=9]No doubt, I'll find the incantation at some random site given enough searching...[/size
Calling session.invalidate() does not cause the container to invoke the logout() method of my LoginModule. Even though the container called the login() and commit() methods.
This is a really strange omission. Surely, there is a way to explicitly request the container to log the current session out. The container surely maintains the LogniContext object somewhere!?
(Thanks for your help on this by the way...) [ December 21, 2005: Message edited by: John Smith ]
Well spotted. I've been looking through the wiki, but unless you know what you are looking for, then finding it is pretty difficult.
Well, it works like a charm!
HOw on earth did you find that incantation? I've been harassing the posters on the jboss.org forums for a week now, and nobody, not even the JBoss developers came up with anything!
I have a LoginHandler which is being called by JBoss to authenticate the login form.
The problem is, that it needs more information from the form than just the j_username and j_password.
It also needs a "company name" parameter too.
Also, it realy needs some parameters from the originally requested URL which specify some back end server details to enable the connection and login to take place. The connection to the server is cached in the HttpSession.
I can't see how to do this. An unlogged in request is intercepted before any declared Filters, and JBoss's CallbackHandler only accepts UsenameCallback, and PasswordCallback.
Before, when I used a Filter to control access, I set up my own CallbackHandler to pass into the LoginContext which accepted new subclasses of Callback so it provided access to the HttpSession (and therefore all attributes in it), so the LoginModule could do anything.
With container-managed authentication, all you get is the username and password. How can this be adequate in 100% of cases?! It's just not good enough!
Thanks for that topic. The magic incantation seemed to be
in jboss-web.xml which actually made it use
in login-config.xml. This is not explained anywhere. Did this technique evolve? Did someone randomly hit on this?
Anyway. OK so far, but my login module needs more information from the login form than just the j_username and j_password which are available from JBoss's CallbackHandler.
I need JBoss to use my custom CallbackHandler to get info out of the HTTP request. This accepts another Callback subclass, a CompanyNameCallback. This is needed to perform our login method.
Anyone know, how I can obtain more information from the login form?
[ December 12, 2005: Message edited by: John Smith ] [ December 12, 2005: Message edited by: John Smith ]