Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for SAE (0.01 sec)

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

                }
                t.treeConnect(null, null);
                return t.acquire();
            } catch (final SmbAuthException sae) {
                log.debug("Authentication failed", sae);
                return retryAuthentication(loc, share, trans, t, referral, sae);
            }
        }
    
        private SmbTreeImpl retryAuthentication(final SmbResourceLocatorImpl loc, final String share, final SmbTransportInternal trans,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

        public static NtlmPasswordAuthentication requestNtlmPasswordAuthentication(final String url, final SmbAuthException sae) {
            if (auth == null) {
                return null;
            }
            synchronized (auth) {
                auth.url = url;
                auth.sae = sae;
                return auth.getNtlmPasswordAuthentication();
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmAuthenticator.java

            return requestNtlmPasswordAuthentication(auth, url, sae);
        }
    
        /**
         * Requests NTLM password authentication using the specified authenticator.
         * @param a the authenticator to use for retrieving credentials
         * @param url the URL that requires authentication
         * @param sae the authentication exception that was thrown
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                    }
                } catch (final SmbAuthException sae) {
                    if (LogStream.level > 1) {
                        log.println("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.smb1.util.Hexdump.toHexString(sae.getNtStatus(), 8)
                                + ": " + sae);
                    }
                    if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpFilter.java

                    }
                } catch (final SmbAuthException sae) {
                    log.warn("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.util.Hexdump.toHexString(sae.getNtStatus(), 8) + ": " + sae);
                    if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) {
                        /*
                         * Server challenge no longer valid for
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                try {
                    if (dirents[i].getType() == SmbConstants.TYPE_NAMED_PIPE) {
                        continue;
                    }
                } catch (final SmbAuthException sae) {
                    log.warn("Auth failed", sae);
                } catch (final SmbException se) {
                    log.warn("Connection failed", se);
                    if (se.getNtStatus() != NtStatus.NT_STATUS_UNSUCCESSFUL) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbCopyUtil.java

                        SmbConstants.FILE_NO_SHARE, attrs, 0);
            } catch (final SmbAuthException sae) {
                log.trace("copyTo0", sae);
                final int dattrs = dest.getAttributes();
                if ((dattrs & SmbConstants.ATTR_READONLY) != 0) {
                    /*
                     * Remove READONLY and try again
                     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            request.auth = auth;
    
                            try {
                                transport.send(request, response);
                            } catch (final SmbAuthException sae) {
                                throw sae;
                            } catch (final SmbException se) {
                                ex = se;
                            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                try {
                    if (dirents[i].getType() == SmbFile.TYPE_NAMED_PIPE) {
                        continue;
                    }
                } catch (final SmbAuthException sae) {
                    if (LogStream.level > 2) {
                        sae.printStackTrace(log);
                    }
                } catch (final SmbException se) {
                    if (LogStream.level > 2) {
                        se.printStackTrace(log);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                        response = trans.send(request, null, EnumSet.of(RequestParam.RETAIN_PAYLOAD));
                        sessId = response.getSessionId();
                    } catch (SmbAuthException sae) {
                        throw sae;
                    } catch (SmbException e) {
                        Smb2SessionSetupResponse sessResponse = request.getResponse();
                        if (e.getNtStatus() == NtStatus.NT_STATUS_INVALID_PARAMETER) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top