Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getChallengeForDomain (0.26 sec)

  1. 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;
                    } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. 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;
                    } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

         * @throws SmbException if an SMB error occurs
         * @throws UnknownHostException if the domain controller cannot be resolved
         */
        public static NtlmChallenge getChallengeForDomain() throws SmbException, UnknownHostException {
            if (DOMAIN == null) {
                throw new SmbException("A domain was not specified");
            }
            synchronized (DOMAIN) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top