We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In line https://github.com/eclipse-ee4j/soteria/blob/master/impl/src/main/java/org/glassfish/soteria/mechanisms/OpenIdAuthenticationMechanism.java#L468 logoutURI.toString() is called what returns something like org.jboss.resteasy.specimpl.ResteasyUriBuilderImpl@7de5465f.
logoutURI.toString()
org.jboss.resteasy.specimpl.ResteasyUriBuilderImpl@7de5465f
Instead logoutURI.build().toString() should be called.
logoutURI.build().toString()
The text was updated successfully, but these errors were encountered:
Came the same issue, created a pull request for the wildfly fork of soteria: wildfly-security/wildfly-elytron-ee#34
Should be fixed here as well
Sorry, something went wrong.
Oops, I somehow missed that one. Thanks for reporting it.
No branches or pull requests
In line https://github.com/eclipse-ee4j/soteria/blob/master/impl/src/main/java/org/glassfish/soteria/mechanisms/OpenIdAuthenticationMechanism.java#L468
logoutURI.toString()
is called what returns something likeorg.jboss.resteasy.specimpl.ResteasyUriBuilderImpl@7de5465f
.Instead
logoutURI.build().toString()
should be called.The text was updated successfully, but these errors were encountered: