-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Default realm is always returned with HTTP 401 #5284
Labels
Milestone
Comments
It looks like this is it and you're aware of this issue.
if (!usernamePassword.isUnsatisfied()) {
//TODO: config
mechanism = new BasicAuthenticationMechanism("Quarkus");
} else {
mechanism = new NoAuthenticationMechanism();
} |
stuartwdouglas
added a commit
to stuartwdouglas/quarkus
that referenced
this issue
Mar 20, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
Merged
stuartwdouglas
added a commit
to stuartwdouglas/quarkus
that referenced
this issue
Mar 20, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
stuartwdouglas
added a commit
to stuartwdouglas/quarkus
that referenced
this issue
Mar 26, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Mar 26, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Mar 26, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
viniciusfcf
pushed a commit
to viniciusfcf/quarkus-fork
that referenced
this issue
Sep 7, 2020
- Use synthetic beans to configure form and basic auth - Allow multiple authentication mechanisms - Better default behaviour based on what is configured Fixes quarkusio#7768 Fixes quarkusio#5284
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Andrey has reported that a default
Quarkus
realm is returned with 401 even when a property such asquarkus.security.users.file.realm-name=MyRealm
is set.Expected behavior
WebAuthenticate
needs to have a custom realm name set.The text was updated successfully, but these errors were encountered: