Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NtlmHttpChal (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top