-
Notifications
You must be signed in to change notification settings - Fork 15
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
Username is always lowercase #9
Comments
Hi - thanks for your feedback and glad you are finding it useful! I've never encountered this issue before - can I ask what the Kerberos technology in use is? I've never known Active Directory to care about case sensitivity of usernames. Is it something other than Windows you are testing? It does sound like I need to add a case-sensitivity option for the username anyway.... |
Well, to be exact. Web application uses kerberos username as authorization mechanism for DMS system. Kerberos part in web application worked flawlessly. However, that web application also communicate with DMS system and that system is case sensitive. So when application called DMS system and used my username in headers, it used lowercase version I’ve sent. That was problem because DMS system didn’t recognized my username |
Thanks, that makes sense. |
Yeah, I know. I just wanted to let you know about this. |
Hey, thank you for this amazing plugin!
Today I've had problem with authorization in web application. Server stored usernames in uppercase, but plugin was sending lowercase. I've tried to change username to uppercase, but it still remained same. Then I looked in source code and discovered that it is always lowercase. When I modified line 464 and removed "toLowerCase" function it worked as expected.
It would be nice to have option to use username "as it is".
The text was updated successfully, but these errors were encountered: