- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NtlmHttpChal (0.17 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
if (loadBalance) { NtlmChallenge chal = (NtlmChallenge) ssn.getAttribute("NtlmHttpChal"); if (chal == null) { chal = SmbSession.getChallengeForDomain(); ssn.setAttribute("NtlmHttpChal", chal); } dc = chal.dc; challenge = chal.challenge;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
if (this.loadBalance) { NtlmChallenge chal = (NtlmChallenge) ssn.getAttribute("NtlmHttpChal"); if (chal == null) { chal = getChallengeForDomain(this.defaultDomain); ssn.setAttribute("NtlmHttpChal", chal); } dc = chal.dc; challenge = chal.challenge;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
when(request.getHeader("Authorization")).thenReturn(authHeader); when(httpSession.getAttribute("NtlmHttpAuth")).thenReturn(null); when(httpSession.getAttribute("NtlmHttpChal")).thenReturn(null); // For this test, we'll simulate that no auth header means we should challenge // Since we can't mock the internal transport operations easily without real network,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0)