Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2226182 | 7u6 | Chris Hegarty | P2 | Closed | Fixed | b17 |
JDK-8017414 | 6u65 | Robert Mckenna | P2 | Closed | Fixed | b01 |
JDK-8013490 | 6u60 | Robert Mckenna | P2 | Closed | Fixed | b01 |
On some computers the windows authentication of Java is not working.
On the same machine, the same user and the same HTTP URL the windows login
is working in the brower.
By debugging the problem, monitor the network monitor and find Java
is not sending the third message of the NTLM handshake.
Look in Java sources and debug the problem, find that NTLMAuthSequence.getNextToken()
return null in the error case. This result in follow exception:
Exception in thread "main" java.io.IOException: Internal authentication error
at sun.net.www.protocol.http.ntlm.NTLMAuthSequence.getAuthHeader(Unknown Source)
at TestNtlm.main(TestNtlm.java:29)
Attached a test program and the log output from the failing system.
Java version - 1.7.0_04-b22. It is not a regression and the problem occur on Java 6;
however, after upgrade to 7u4 and the problem persistent.
The OS is a Windows 7 32 Bit.
On the same machine, the same user and the same HTTP URL the windows login
is working in the brower.
By debugging the problem, monitor the network monitor and find Java
is not sending the third message of the NTLM handshake.
Look in Java sources and debug the problem, find that NTLMAuthSequence.getNextToken()
return null in the error case. This result in follow exception:
Exception in thread "main" java.io.IOException: Internal authentication error
at sun.net.www.protocol.http.ntlm.NTLMAuthSequence.getAuthHeader(Unknown Source)
at TestNtlm.main(TestNtlm.java:29)
Attached a test program and the log output from the failing system.
Java version - 1.7.0_04-b22. It is not a regression and the problem occur on Java 6;
however, after upgrade to 7u4 and the problem persistent.
The OS is a Windows 7 32 Bit.
- backported by
-
JDK-2226182 Windows authentication not working on some computers
-
- Closed
-
-
JDK-8013490 Windows authentication not working on some computers
-
- Closed
-
-
JDK-8017414 Windows authentication not working on some computers
-
- Closed
-