-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow multiple authentication options for a web app #5442
Comments
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
… server Multiple OpenIdConfigurations can be stored on server and one is selected based on the realm name. This allows an option of multiple configurations where the webapp selects the configuration it wants. The OpenIdLoginService is no longer needed to be set. It can be null in which case the Authenticator creates its own one. It can be set to a different LoginService such as HashLoginService and then the OpenIdAuthenticator will wrap that LoginService. Otherwise if a OpenIdLoginService is specifically set it will be used. Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
…cation Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This issue has been automatically marked as stale because it has been a |
This issue has been automatically marked as stale because it has been a |
This issue has been automatically marked as stale because it has been a |
…entication options Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
…entication options Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
This issue has been automatically marked as stale because it has been a |
Description
An example was brought up in a post on stackoverflow to use both OpenID and FORM authentication together.
I have also seen other combinations which have been asked about so could be a good idea to make this a generic mechanism if possible. For example
BASIC
andFORM
authentication.Another answer on stackoverflow said if you are using Wildfly then its possible to configure multiple authentication mechanisms in web.xml
So maybe we could do something similar, or maybe this is achievable using something like JAAS or JASPI.
The text was updated successfully, but these errors were encountered: