Re: User specified authentication method

2013-02-26 Thread Dan Rollo
I managed to create a Dynamic Authentication filter that lets the user specify at runtime which authentication method to use. My approach involved the items below, and I'd appreciate any comments. Is this a "good" approach (Is there a better way to leverage the shiro framework)? For an example

Re: User specified authentication method

2013-02-21 Thread bhamail
ike I'm fighting the framework with this approach. How could I get a signal from the client (http params) to be available in a Realm.supports() method? Thanks, and sorry for not asking more clearly. Dan -- View this message in context: http://shiro-user.582556.n2.nabble.com/User-specifie

User specified authentication method

2013-02-19 Thread Dan Rollo
Hi, I'm working on a login process where the user can choose to login via SSO or via User/Pwd. To make this choice, the user will select an item from a combo box and click a 'login' button. How would I implement such a dynamic/runtime strategy in shiro? (Sorry if I've missed the docs on this