Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for requestNtlmPasswordAuthentication (0.48 sec)

  1. src/main/java/jcifs/smb/NtlmAuthenticator.java

         */
        public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication ( String url, SmbAuthException sae ) {
            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
    
        /**
         * @param a
         * @param url
         * @param sae
         * @return credentials returned by prompt
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/context/CIFSContextCredentialWrapper.java

                }
            }
            NtlmAuthenticator auth = NtlmAuthenticator.getDefault();
            if ( auth != null ) {
                NtlmPasswordAuthenticator newAuth = NtlmAuthenticator
                        .requestNtlmPasswordAuthentication(auth, locationHint, ( error instanceof SmbAuthException ) ? (SmbAuthException) error : null);
                if ( newAuth != null ) {
                    this.creds = newAuth;
                    return true;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:32:29 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

            return sae;
        }
    
    /**
    Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials.
     */
    
        public static NtlmPasswordAuthentication
                    requestNtlmPasswordAuthentication( String url, SmbAuthException sae ) {
            if( auth == null ) {
                return null;
            }
            synchronized( auth ) {
                auth.url = url;
                auth.sae = sae;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    tree = ssn.getSmbTree(null, null);
                    tree.treeConnect(null, null);
                } else if ((a = NtlmAuthenticator.requestNtlmPasswordAuthentication(
                            url.toString(), sae)) != null) {
                    auth = a;
                    ssn = trans.getSmbSession(auth);
                    tree = ssn.getSmbTree(share, null);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top