-
Notifications
You must be signed in to change notification settings - Fork 185
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
Kerberos WindowsSecurityContextImpl SEC_E_BUFFER_TOO_SMALL #273
Comments
Please make a pull request, however MSDN doesn't document that you could be getting |
I cannot speak for SEC_E_INSUFFICIENT_MEMORY and I don't know why this return code is handled in the first place. We've only seen SEC_E_BUFFER_TOO_SMALL. That is also the error code which is already being checked in WindowsAuthProviderImpl.acceptSecurityToken. |
Because it documents that appropriately. But you should re-compile waffle with this change, confirm the fix and make a pull request. |
OK, I think you've mentioned the wrong error code in your first comment, then. |
I'm not against merging this, but I'd like to understand how and why this happens, confirm that it actually fixes the problem, make the change in all the code, not just Java. You can help. |
This code was merged in 20ea0b4 |
Hi,
on some Windows Accounts we've seen the SEC_E_BUFFER_TOO_SMALL error in WindowsSecurityContextImpl.initialize. So far this case is not handled inside the switch statement, only the SEC_E_INSUFFICIENT_MEMORY error. Both error codes should result in increasing the token size.
Thanks for including this fix in the next version.
The text was updated successfully, but these errors were encountered: