Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jgit-dev] HttpClientConnection.getHeaderFields to support multiple header values

Hello dear JGit devs,

I have come here to bring a patch for an old bug that might have never been reported.
We might see in the internet it is very hard to get JGit to connect to a TFS server, but today I have found the reason.

It is because of HttpClientConnection.getHeaderFields. If a server replies with multiple WWW-Authenticate, it will consider only the last value read.
Except the correct behavior is to provide a list of all the values if same header key.

Because of this bug JGit will not even try other authentication methods if NTLM is the last one in the response header.

I have patched this with a Pull Request, that I kindly ask to be accepted:
https://github.com/eclipse/jgit/pull/68

I also have workarounds provided if anyone is facing a similar issue, and can't wait for the fix:
https://stackoverflow.com/a/50919290/697399

Regards,
Gabriel Couto

Back to the top