-
Notifications
You must be signed in to change notification settings - Fork 21
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
Spring Security: "GSSHeader did not find the right tag" #28
Comments
Kerberos erros can be misleading. I would say that following lines look suspicious: <property name="servicePrincipal" value="HTTP/user.local@COMPANY.LOCAL"/>
<property name="keyTabLocation" value="file:C:\Temp\foobar.keytab"/> Say you have an AD account for your server called In this case you should create keytab for account Hope it helps. |
@bedrin thanks for the help. one more question: so the <property name="servicePrincipal" value="srv_server"/> <!-- as here --> with this setup I got the following stacktrace:
Edit:
|
Hi there,
I'm trying to get this work with Spring Security and Vaadin 8.
Is there an example project which I can take a look at?
Currently I have the following setup in the
application-context.xml
:And the web.xml has:
The keytab file is correct, and the
servicePrincipal
here matches the one in the keytab file. Still, the app throws the Exception in the title, with the following stacktrace:If I debug the app at the
GSSHeader.java:97
, the the variabletag
has the value of78
<- my guess is that the app fails 'cause of this.Thanks for any help,
The text was updated successfully, but these errors were encountered: